js装载xml文件然后发向服务器的实现代码
js装载xml文件然后发向服务器的实现代码
发布时间:2016-12-29 来源:查字典编辑
摘要:前台:复制代码代码如下:js装载xml文件然后发向服务器js装载xml文件然后发向服务器Ajax复制代码代码如下:usingSystem;u...

前台:

复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>js装载xml文件然后发向服务器</title>

<script type="text/javascript"><></script>

</head>

<body>

<input type="button" value="request" />

</body>

</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>js装载xml文件然后发向服务器</title>

<script type="text/javascript"><></script>

</head>

<body>

<input type="button" value="request" />

</body>

</html>

Ajax

复制代码 代码如下:

using System;

using System.Data;

using System.Configuration;

using System.Collections;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Xml;

public partial class testXml_Default : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

XmlDocument xmldoc = new XmlDocument();

xmldoc.Load(Request.InputStream);//接收到客户端传来的xml

xmldoc.Save(Server.MapPath("~"+"/hello.xml"));

Response.Write(xmldoc.InnerXml);//返回修改后的Xml文档

Response.End();

}

}

using System;

using System.Data;

using System.Configuration;

using System.Collections;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Xml;

public partial class testXml_Default : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

XmlDocument xmldoc = new XmlDocument();

xmldoc.Load(Request.InputStream);//接收到客户端传来的xml

xmldoc.Save(Server.MapPath("~"+"/hello.xml"));

Response.Write(xmldoc.InnerXml);//返回修改后的Xml文档

Response.End();

}

}

Xml文档:

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8" ?>

<root>

<person id="1">

<name>tree</name>

<gender>male</gender>

</person>

</root>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新AJAX相关学习
热门AJAX相关学习
编程开发子分类