XML学习(三) js保存xml的示例代码分享

XML/RSS教程评论1.3K views阅读模式

.aspx页利用XMLHTTPrequest发送修改过的xml,在接受也接收保存。

主要语句

xmlHttp.open("POST", "receive.aspx?type=xmlsave", true);

xmlHttp.send(xmlDoc);

代码

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function parseXML() {
try //Internet Explorer
{
xmlDoc
= new ActiveXObject("Microsoft.XMLDOM");
}
catch (e) {
try //Firefox, Mozilla, Opera, etc.
{
xmlDoc
= document.implementation.createDocument("", "", null);
}
catch (e) {
alert(e.message);
return;
}
}
xmlDoc.async
= false; //假如xml载入完毕执行以下
xmlDoc.load("note.xml");


xmlDoc.getElementsByTagName(
"to")[0].childNodes[0].nodeValue = "yaomingming";

var xmlHttp;

try {
// Firefox, Opera 8.0+, Safari
xmlHttp = new XMLHttpRequest();
}
catch (e) {

// Internet Explorer
try {
xmlHttp
= new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e) {

try {
xmlHttp
= new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
alert(
"您的浏览器不支持AJAX!");
return false;
}
}
}
xmlHttp.onreadystatechange
= function() { //onreadystatechange 属性存有处理服务器响应的函数
if (xmlHttp.readyState == 4) { //readyState 属性存有服务器响应的状态信息
document.getElementById("to").innerHTML = xmlHttp.responseText; //通过 responseText 属性来取回由服务器返回的数据
}
}
xmlHttp.open(
"POST", "receive.aspx?type=xmlsave", true);

// open() 方法需要三个参数。第一个参数定义发送请求所使用的方法(GET 还是 POST)。第二个参数规定服务器端脚本的 URL。第三个参数规定应当对请求进行异步地处理。
xmlHttp.send(xmlDoc); //send() 方法可将请求送往服务器
}

</script>
</head>
<body onload="parseXML()">
<form id="form1" runat="server">
<p>

    <span id="to"></span>
</p>
</form>
</body>
</html>

receive.aspx.cs

System.IO.Stream instream = Page.Request.InputStream;
BinaryReader br
= new BinaryReader(instream, System.Text.Encoding.UTF8);
byte[] byt = br.ReadBytes((int)instream.Length);
string sXml = System.Text.Encoding.UTF8.GetString(byt);

System.Xml.XmlDocument xmlDoc
= new System.Xml.XmlDocument();
xmlDoc.LoadXml(sXml);
xmlDoc.Save(Server.MapPath(
"note.xml"));

Response.Write(
"save");

以上就是XML学习(三) js保存xml的示例代码分享的详细内容,更多请关注php教程其它相关文章!

企鹅博客
  • 本文由 发表于 2020年7月21日 22:11:43
  • 转载请务必保留本文链接:https://www.qieseo.com/327105.html

发表评论