<%@ 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