如何用ASP读取 XML - Web 开发 / ASP
<?xml version="1.0"?>
<root>
<status>433</status>
<msg>这个是汉字</msg>
<serialno>123</serialno>
</root>
如何用ASP读取 status值 msg值 serialno值
LZ要学会用搜索引擎
http://topic.csdn.net/u/20090626/19/67DD3047-1F86-4291-B8EF-62D6782D52F1.html
用MSXML!给你小示例:
VBScript code:
strPath=Server.MapPath("/template/infotag.xml")
Set parser=Server.CreateObject("Microsoft.XMLDOM")
parser.Load(strPath)
If parser.parseError.errorCode<>0 then
Response.Write "load error..."
End If
Set itemList=parser.selectNodes("//item[@parent='0']")
Dim floatCursor:floatCursor=35
Dim maxindex:maxindex=itemList.length
Response.Write "<div class='item'>"
For I=0 to maxindex-1
Dim strTitle,strID
strTitle=itemList.item(i).firstChild.nodeValue
strID=itemList.item(i).getAttribute("id")
Set childNodes=parser.selectNodes("//item[@parent='"&strID&"']")
If childNodes.length-1>floa
相关问答:
我找了一个伪静态代码,如下:
index.asp
<!--#include file="config.asp"-->
<ol>
<%
Set rs=server.CreateObject("adodb.recordset") & ......
哪里出错了,输出这样的结果??
<%@ Page Language="VB" AutoEventWireup="false" aspcompat="true" CodeFile="Default.aspx.vb" Inherits="_Default" %&g ......
调整了这里,那里出问题。
有没有什么好的方法,像调整对话框一样????
找个专门做页面的
在dreamweaver里调。。。也可以直接控制HTML代码
确实痛苦 感同身受呀
哈哈 坚决路过。
用DW吧,VS搞设计 ......
A页面
<table width="200" border="1">
<tr>
<td>1</td>
<td>3</td>
<td><!--#include/top.html#-- ......