国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

一個(gè)asp版XMLDOM操作類

2024-05-04 11:09:11
字體:
供稿:網(wǎng)友
一個(gè)xmldom操作類代碼,方便需要跟xml結(jié)合的代碼
 
 
 
<script language="vbscript" runat="server"> 
'============================================================ 
'作者:做回自己 
'時(shí)間:2005-3-15 
============================================================ 
Class XMLClass 
Private objXml 
Private xmlDoc 
Private xmlPath 
'//============================================================ 
'<!--類初始化及注銷時(shí)的事件--> 
Sub Class_initialize 
Set objXml = Server.CreateObject("MSXML2.DOMDocument") 
objXml.preserveWhiteSpace = true 
objXml.async = false 
End Sub 
Sub Class_Terminate 
Set objXml = Nothing 
End Sub 
'//============================================================ 
'<!--建立一個(gè)新的XML文檔--> 
Public Function CreateNew(sName) 
Set tmpNode = objXml.createElement(sName) 
objXml.appendChild(tmpNode) 
Set CreateNew = tmpNode 
End Function 
'<!--從外部讀入XML文檔--> 
Public Function OpenXml(sPath) 
OpenXml=False 
sPath=Server.MapPath(sPath) 
'Response.Write(sPath) 
xmlPath = sPath 
If objXml.load(sPath) Then 
Set xmlDoc = objXml.documentElement 
OpenXml=True 
End If 
End Function 
'<!--從外部讀入XML字符串--> 
Public Sub LoadXml(sStr) 
objXml.loadXML(sStr) 
Set xmlDoc = objXml.documentElement 
End Sub 
Public Sub InceptXml(xObj) 
Set objXml = xObj 
Set xmlDoc = xObj.documentElement 
End Sub 
'//============================================================ 
'<!--新增一個(gè)節(jié)點(diǎn)--> 
Public Function AddNode(sNode,rNode) 
' sNode STRING 節(jié)點(diǎn)名稱 
' rNode OBJECT 增加節(jié)點(diǎn)的上級節(jié)點(diǎn)引用 
'============================================================= 
Dim TmpNode 
Set TmpNode = objXml.createElement(sNode) 
rNode.appendChild TmpNode 
Set AddNode = TmpNode 
End Function 
'<!--新增一個(gè)屬性--> 
Public Function AddAttribute(sName,sValue,oNode) 
' sName STRING 屬性名稱 
' sValue STRING 屬性值 
' oNode OBJECT 增加屬性的對象 
'============================================================= 
oNode.setAttribute sName,sValue 
End Function 
'<!--新增節(jié)點(diǎn)內(nèi)容--> 
Public Function AddText(FStr,cdBool,oNode) 
Dim tmpText 
If cdBool Then 
Set tmpText = objXml.createCDataSection(FStr) 
Else 
Set tmpText = objXml.createTextNode(FStr) 
End If 
oNode.appendChild tmpText 
End Function 
'======================================================================================================== 
'<!--取得節(jié)點(diǎn)指定屬性的值--> 
Public Function GetAtt(aName,oNode) 
' aName STRING 屬性名稱 
' oNode OBJECT 節(jié)點(diǎn)引用 
'============================================================= 
dim tmpValue 
tmpValue = oNode.getAttribute(aName) 
GetAtt = tmpValue 
End Function 
'<!--取得節(jié)點(diǎn)名稱--> 
Public Function GetNodeName(oNode) 
' oNode OBJECT 節(jié)點(diǎn)引用 
GetNodeName = oNode.nodeName 
End Function 
'<!--取得節(jié)點(diǎn)內(nèi)容--> 
Public Function GetNodeText(oNode) 
' oNode OBJECT 節(jié)點(diǎn)引用 
GetNodeText = oNode.childNodes(0).nodeValue 
End Function 
'<!--取得節(jié)點(diǎn)類型--> 
Public Function GetNodeType(oNode) 
' oNode OBJECT 節(jié)點(diǎn)引用 
GetNodeType = oNode.nodeValue 
End Function 
'<!--查找節(jié)點(diǎn)名相同的所有節(jié)點(diǎn)--> 
Public Function FindNodes(sNode) 
Dim tmpNodes 
Set tmpNodes = objXml.getElementsByTagName(sNode) 
Set FindNodes = tmpNodes 
End Function 
'<!--查打一個(gè)相同節(jié)點(diǎn)--> 
Public Function FindNode(sNode) 
Dim TmpNode 
Set TmpNode=objXml.selectSingleNode(sNode) 
Set FindNode = TmpNode 
End Function 
'<!--刪除一個(gè)節(jié)點(diǎn)--> 
Public Function DelNode(sNode) 
Dim TmpNodes,Nodesss 
Set TmpNodes=objXml.selectSingleNode(sNode) 
Set Nodesss=TmpNodes.parentNode 
Nodesss.removeChild(TmpNodes) 
End Function 
'<!--替換一個(gè)節(jié)點(diǎn)--> 
Public Function ReplaceNode(sNode,sText,cdBool) 
'replaceChild 
Dim TmpNodes,tmpText 
Set TmpNodes=objXml.selectSingleNode(sNode) 
'AddText sText,cdBool,TmpNodes 
If cdBool Then 
Set tmpText = objXml.createCDataSection(sText) 
Else 
Set tmpText = objXml.createTextNode(sText) 
End If 
TmpNodes.replaceChild tmpText,TmpNodes.firstChild 
End Function 

Private Function ProcessingInstruction 
'//--創(chuàng)建XML聲明 
Dim objPi 
Set objPi = objXML.createProcessingInstruction("xml", "version="&chr(34)&"1.0"&chr(34)&" encoding="&chr(34)&"gb2312"&chr(34)) 
'//--把xml生命追加到xml文檔 
objXML.insertBefore objPi, objXML.childNodes(0) 
End Function 
'//=============================================================================
'<!--保存XML文檔--> 
Public Function SaveXML() 
'ProcessingInstruction() 
objXml.save(xmlPath) 
End Function 
'<!--另存XML文檔--> 
Public Function SaveAsXML(sPath) 
ProcessingInstruction() 
objXml.save(sPath) 
End Function 
'//================================================================================== 
'相關(guān)統(tǒng)計(jì) 
'<!--取得根節(jié)點(diǎn)--> 
Property Get Root 
Set Root = xmlDoc 
End Property 
'<!--取得根節(jié)點(diǎn)下子節(jié)點(diǎn)數(shù)--> 
Property Get Length 
Length = xmlDoc.childNodes.length 
End Property 
'//================================================================================== 
'相關(guān)測試 
Property Get TestNode 
TestNode = xmlDoc.childNodes(0).text 
End Property 
End Class 
</script> 
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 大新县| 澳门| 龙胜| 杨浦区| 鞍山市| 永德县| 阿图什市| 昌黎县| 石林| 高邑县| 阆中市| 武定县| 海安县| 丰顺县| 错那县| 健康| 体育| 崇信县| 景泰县| 深州市| 湾仔区| 胶南市| 彰化县| 舒兰市| 吴旗县| 乌拉特中旗| 平远县| 聂拉木县| 黔江区| 新野县| 正安县| 疏附县| 绩溪县| 博兴县| 从化市| 贺州市| 双城市| 丹江口市| 嵊泗县| 保靖县| 鄂托克前旗|