aps页面显示xml

前端之家收集整理的这篇文章主要介绍了aps页面显示xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Bestscore.aspx.cs" Inherits="WebApplication1.Bestscore" %>


namespace WebApplication1 { public partial class Bestscore : System.Web.UI.Page { private int score = 0; private string str = ""; protected void Page_Load(object sender,EventArgs e) { Response.ContentType = "text/xml"; Response.Charset = "UTF-8"; //System.Xml.XmlDocument doc = new System.Xml.XmlDocument(); //string strPath = @"~/login/xmlfile"; //doc.Load(Server.MapPath(strPath + "/books.xml"));//requests.xml是服务器上xml文件 //Response.Write(doc.DocumentElement.OuterXml); string ss = Request.Params["score"]; int num = Convert.ToInt32(ss); str = "<xml>before:"+score+" after:"; if(num > score){ score = num; } str = str + score + "</xml>"; Response.Write(str); Response.End(); } } }

原文链接:https://www.f2er.com/xml/298513.html

猜你在找的XML相关文章