标题:asp修改xml文件,各位大虾指点下。
只看楼主
codew
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-2-23
结帖率:0
已结贴  问题点数:15 回复次数:1 
asp修改xml文件,各位大虾指点下。
分不多,请谅解。急

xml如下:
<?xml version="1.0" uncoding="utf-8"?>
<site>
<newlist names="luhehe" urls="www.baidu.com" mail="hehe@第一条留言</newlist>
<newlist names="lheiheie" urls="www.baidu.com" mail="hehheie@第二条留言</newlist>
</site>
代码如下:
strFile=Server.MapPath("xml\list.xml")

Set objXML=server.CreateObject("microsoft.xmldom")

objxml.async = "false"

objXML.load(strFile)

Set newnode=objXML.createElement("newlist")

newnode.text="第十条留言"

Set newatt=objXML.createNode("attribute","names","")

newatt.text="hahahaha"

newnode.SetAttributeNode newatt

Set newatt=objXML.createNode("attribute","urls","")

newatt.text="www.baidu.com"

newnode.SetAttributeNode newatt

Set newatt=objXML.createNode("attribute","mail","")

newatt.text="hahahaha@

newnode.SetAttributeNode newatt

set objNode = objXML.documentElement.selectsinglenode("site")

objNode.appendChild newnode

objXML.save(strFile)
错误如下:
Script error detected at line 38.
Source line: set objNode = objXML.documentElement.selectsinglenode("newlist")
Description: 缺少对象: 'objXML.documentElement'


请帮我解决下好么,我是想通过asp接收flash传过来的值 写进xml 然后再直接用flash 遍历xml 这样的方式 做一个 留言板,
搜索更多相关主题的帖子: xml asp version false names 
2012-02-23 09:12
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
得分:15 
set objNode = objXML.documentElement.childNodes.item(0)
2012-02-23 16:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-361422-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.388236 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved