Asp操作Xml的精煉類,含示例代碼
以下保存成 app.xml , 與asp文件放在相同目錄下!
<?xml version="1.0" encoding="utf-8"?>
<root>
<about>
<version>1.0 beta</version>
<latestversion>1.0 beta</latestversion>
<author>author</author>
<pubdate>2010/02/20</pubdate>
</about>
<config>
<installed>false</installed>
<bakpath>_data</bakpath>
</config>
</root>
以下為asp類及使用方法,請(qǐng)保存成test.asp, 測(cè)試運(yùn)行
<%
class appconfig
dim xmldom
private sub class_initialize()
set xmldom = server.createobject("microsoft.xmldom")
xmldom.load(server.mappath("app.xml"))
end sub
private sub class_terminate()
set xmldom = nothing
end sub
function getd(key)
getd =xmldom.getelementsbytagname(key)(0).text
end function
function setd(key,val)
xmldom.getelementsbytagname(key)(0).text = val
xmldom.save(server.mappath("app.xml"))
end function
function addd(node,key,val)
set newnode=xmldom.getelementsbytagname(node)(0).appendchild(xmldom.createelement(key))
newnode.text = val
set newnode=nothing
xmldom.save(server.mappath("app.xml"))
end function
function deld(key)
on error resume next
xmldom.getelementsbytagname(key)(0).parentnode.removechild(xmldom.getelementsbytagname(key)(0))
xmldom.save(server.mappath("app.xml"))
end function
end class
set config = new appconfig
wn config.getd("version")
wn config.getd("latestversion")
wn config.getd("author")
wn config.getd("pubdate")
wn config.getd("installed")
wn config.getd("bakpath")
' 去掉相應(yīng)的注釋符,即可看到 [添加 / 編輯 / 刪除] 節(jié)點(diǎn)的效果
'call config.addd("config","test","test") ' 添加節(jié)點(diǎn)
'call config.setd("test","test2") ' 編輯節(jié)點(diǎn)
'call config.deld("test") ' 刪除節(jié)點(diǎn)
sub wn(str)
response.write(str)&"<br />"&vbcrlf
end sub
%>
不是很通吃,但某些情況下的運(yùn)用足夠了, 基本可以實(shí)現(xiàn)添加/刪除/修改節(jié)點(diǎn)
<?xml version="1.0" encoding="utf-8"?>
<root>
<about>
<version>1.0 beta</version>
<latestversion>1.0 beta</latestversion>
<author>author</author>
<pubdate>2010/02/20</pubdate>
</about>
<config>
<installed>false</installed>
<bakpath>_data</bakpath>
</config>
</root>
以下為asp類及使用方法,請(qǐng)保存成test.asp, 測(cè)試運(yùn)行
<%
class appconfig
dim xmldom
private sub class_initialize()
set xmldom = server.createobject("microsoft.xmldom")
xmldom.load(server.mappath("app.xml"))
end sub
private sub class_terminate()
set xmldom = nothing
end sub
function getd(key)
getd =xmldom.getelementsbytagname(key)(0).text
end function
function setd(key,val)
xmldom.getelementsbytagname(key)(0).text = val
xmldom.save(server.mappath("app.xml"))
end function
function addd(node,key,val)
set newnode=xmldom.getelementsbytagname(node)(0).appendchild(xmldom.createelement(key))
newnode.text = val
set newnode=nothing
xmldom.save(server.mappath("app.xml"))
end function
function deld(key)
on error resume next
xmldom.getelementsbytagname(key)(0).parentnode.removechild(xmldom.getelementsbytagname(key)(0))
xmldom.save(server.mappath("app.xml"))
end function
end class
set config = new appconfig
wn config.getd("version")
wn config.getd("latestversion")
wn config.getd("author")
wn config.getd("pubdate")
wn config.getd("installed")
wn config.getd("bakpath")
' 去掉相應(yīng)的注釋符,即可看到 [添加 / 編輯 / 刪除] 節(jié)點(diǎn)的效果
'call config.addd("config","test","test") ' 添加節(jié)點(diǎn)
'call config.setd("test","test2") ' 編輯節(jié)點(diǎn)
'call config.deld("test") ' 刪除節(jié)點(diǎn)
sub wn(str)
response.write(str)&"<br />"&vbcrlf
end sub
%>
不是很通吃,但某些情況下的運(yùn)用足夠了, 基本可以實(shí)現(xiàn)添加/刪除/修改節(jié)點(diǎn)
相關(guān)文章
- ASP中的面向?qū)ο箢?/a>
- asp下生成目錄樹結(jié)構(gòu)的類
- ASPJPEG綜合操作的CLASS類
- ASP中利用execute實(shí)現(xiàn)動(dòng)態(tài)包含文件的方法
- 實(shí)現(xiàn)ASP程序執(zhí)行時(shí)間統(tǒng)計(jì)類的代碼
- 結(jié)合FSO操作和Aspjpeg組件寫的Class
- asp的通用數(shù)據(jù)分頁(yè)類
- 捌度空間 緩存類
- VBS、ASP代碼語法加亮顯示的類
- MusicGet 類
- 管理員登錄
- 日期函數(shù)擴(kuò)展類Ver0.1.1
- Asp類 的數(shù)據(jù)庫(kù)領(lǐng)域
- 查詢翻頁(yè)優(yōu)化第1/2頁(yè)
- 統(tǒng)計(jì)有多少行JS代碼和ASP代碼
- Ver2005 最終版
- ASP中一個(gè)字符串處理類
- ASP高亮類
- ASP中一個(gè)用VBScript寫的隨機(jī)數(shù)類
- [ASP]使用類,實(shí)現(xiàn)模塊化