使用 Asp 建立 XML 檔案

2021-04-07 12:12:20 字數 963 閱讀 8103

"err.clear

response.end

end if

loadfile = .read()

.close

end with

set objstream = nothing

end function

%>

<%

'建立dom物件

set objdom=server.createobject("microsoft.xmldom")

'取得xml資料

'方法1 取得xml檔案的xml資料

'objdom.load("c:/test.xml")

'方法2 取得xml資料串的資料

objdom.loadxml("<?xml version=""1.0"" encoding=""utf-8"" ?>")

set scnodechild = objdom.createelement("field")

scnodechild.text = "title"

set newattribute=objdom.createnode("attribute","lable","")

newattribute.text = "標題"

scnodechild.setattributenode newattribute

set newattribute=objdom.createnode("attribute","datatype","")

newattribute.text = "varchar"

scnodechild.setattributenode newattribute

set newattribute=objdom.createnode("attribute","len","")

newattribute.text = "200"

scnodechild.setattributenode newattribute

建立xml檔案 解析xml檔案

import codecs import xml.dom.minidom doc xml.dom.minidom.document print doc root doc.createelement booklist print u 新增的xml標籤為 root.tagname root.setatt...

建立XML檔案

function xml write htmcode,data type,mb order,mb name select case data type case 1 sql w select from zine mags where z id z id and page id page id and...

建立XML檔案

生成的xml檔案如下 小白楊0 010 888 0 北京 海淀區 鑄成大廈 0 小白楊1 010 888 1 北京 海淀區 鑄成大廈 1 小白楊2 010 888 2 北京 海淀區 鑄成大廈 2 小白楊3 010 888 3 北京 海淀區 鑄成大廈 3 小白楊4 010 888 4 北京 海淀區 鑄...

java建立xml檔案

生成xml檔案 throws ioexception throws jdomexception public void buildxmldoc throws ioexception,jdomexception elprovince.addcontent elcity 給父節點list新增user子節...

C 建立xml檔案

引言 隨著xml的普及以及在動態web應用程式中大量應用,如何通過.net建立,刪除,修改xml檔案變的也來也重要了。一個簡單的概念是,xml檔案跟大的文字檔案並沒有什麼區別,同時它是先於.net出現,很多asp的開發者,當他需要程式輸出xml檔案的時候,通常都是用response.write 方法...