aps页面显示xml

来源:互联网 发布:淘宝网外衣 编辑:程序博客网 时间:2024/04/30 06:47

<%@ 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();

        }

    }
}



0 0