111,130
社区成员
发帖
与我相关
我的任务
分享
namespace Web.aspx
{
public partial class liveMsg : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
XmlDocument xml = new XmlDocument();
xml.Load("aaa.xml");
Response.Write(xml.ToString());
}
}
}