Asp 조작 Xml 의 정제 류,예시 코드 포함

2366 단어 AspXml
다음은 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 류 및 사용 방법 입 니 다.test.asp 로 저장 하 십시오.테스트 실행
 
<%
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")
' , [ / / ]
'Call Config.AddD("Config","test","test") '
'Call Config.SetD("test","test2") '
'Call Config.DelD("test") '
Sub wn(str)
Response.Write(str)&"<br />"&vbcrlf
End Sub
%>
은 통 하지 않 지만 일부 상황 에서 의 활용 이 충분 합 니 다.기본적으로 노드 추가/삭제/수정 을 실현 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기