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 mb_order="&mb_order
set rs_w=conn.execute(sql_w)
htmcode=htmcode&"<"&mb_name&" mag='"&rs_w("contents")&"' mb_order='"&mb_order&"'/>"&vbcrlf
set rs_w=nothing
case 2
sql_w="select * from zine_img where z_id="&z_id&" and page_id="&page_id&" and mb_order="&mb_order
set rs_w=conn.execute(sql_w)
htmcode=htmcode&"<"&mb_name&" url='/zine/"&z_id&"/images/"&rs_w("img")&"' mb_order='"&mb_order&"'/>"&vbcrlf
set rs_w=nothing
case 3
htmcode=htmcode&""&vbcrlf
sql_w="select * from zine_img where z_id="&z_id&" and page_id="&page_id&" and mb_order="&mb_order
set rs_w=conn.execute(sql_w)
do while not rs_w.eof
htmcode=htmcode&""&vbcrlf
rs_w.movenext
loop
set rs_w=nothing
htmcode=htmcode&""&vbcrlf
case 4
sql_w="select * from zine_flv where z_id="&z_id&" and page_id="&page_id&" and mb_order="&mb_order
set rs_w=conn.execute(sql_w)
htmcode=htmcode&""&vbcrlf
set rs_w=nothing
case 5
htmcode=htmcode&""&vbcrlf
sql_w="select * from zine_dirs where z_id="&z_id&" and page_id="&page_id&" and mb_order="&mb_order
set rs_w=conn.execute(sql_w)
do while not rs_w.eof
htmcode=htmcode&""&vbcrlf
rs_w.movenext
loop
set rs_w=nothing
htmcode=htmcode&""&vbcrlf
case 6
case 7
case 8
end select
xml_write=htmcode
end function
%>
建立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檔案
生成的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 北京 海淀區 鑄...
C 建立xml檔案
引言 隨著xml的普及以及在動態web應用程式中大量應用,如何通過.net建立,刪除,修改xml檔案變的也來也重要了。乙個簡單的概念是,xml檔案跟大的文字檔案並沒有什麼區別,同時它是先於.net出現,很多asp的開發者,當他需要程式輸出xml檔案的時候,通常都是用response.write 方法...