微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

.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);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。