国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

報(bào)錯(cuò):XML頁(yè)無(wú)法顯示,下列標(biāo)記沒有被關(guān)閉解決方法

瀏覽:251日期:2022-06-04 11:20:46
從數(shù)據(jù)庫(kù)讀出數(shù)據(jù),然后以XML的格式顯示數(shù)據(jù),但是提示hd,category,subsort等沒有關(guān)閉,可是我已經(jīng)關(guān)閉了呀,不知道具體是什么原因造成了這個(gè)問題?
VB code:
復(fù)制代碼 代碼如下:
<%
response.ContentType= "text/xml"
Response.CharSet = "GB2312"
Response.Expires = 0
Response.write "<?xml version=""1.0"" encoding=""UTF-8"" ?>"
Response.write vbcrlf&"<hd>"
Response.write vbcrlf&vbTab&"<category>"
Response.write vbcrlf&vbTab&vbTab&"<subsort>"
‘連接數(shù)據(jù)庫(kù)的語(yǔ)句省略
do while not rs.eof
response.write vbcrlf&vbTab&vbTab&vbTab&"<item>"
response.write vbcrlf&vbTab&vbTab&vbTab&vbTab&"<id>"&rs("id")&"</id>"
response.write vbcrlf&vbTab&vbTab&vbTab&"</item>"
loop
rs.close()
set rs=nothing
response.write vbcrlf&vbTab&vbTab&"</subsort>"
response.write vbcrlf&vbTab&"</category>"
response.write vbcrlf&"</hd>"
Response.End()
%>

因?yàn)檩敵龅膬?nèi)容不能帶<>”‘&這幾個(gè)特殊字符,需要進(jìn)行XmlEncode編碼,如下的代碼詳情:
VBScript code:
復(fù)制代碼 代碼如下:
Function XMLEncode(var)
On Error Resume Next
Dim strTmp
If (IsNull(var)) Then
var = ""
End If
If (VarType(var) = 11) Then
If (var) Then
strTmp = "1"
Else
strTmp = "0"
End If
Else
strTmp = CStr(var)
strTmp = Replace(strTmp, "&", "&")
strTmp = Replace(strTmp, "<", "<")
strTmp = Replace(strTmp, ">", ">")
strTmp = Replace(strTmp, """", """)
strTmp = Replace(strTmp, """, """)
End If
XMLEncode = strTmp
End Function
Function XMLDecode(str)
Dim temp
temp=replace(str,"&","&")
temp=replace(temp,"<","<")
temp=replace(temp,">",">")
temp=replace(temp,""","""")
temp=replace(temp,""",""")
XMLDecode = temp
End Function
Response.Write XmlEndode(rs("字段名字"))

另外,如果是文件編碼問題,則可以將:
Response.write “<?xml version=”"1.0″” encoding=”"UTF-8″” ?>”
改成
Response.write “<?xml version=”"1.0″” encoding=”"GB2312″” ?>”
另外,在開始輸出之前,需要清空內(nèi)容:
Response.Clear
Response.write “<?xml version=”"1.0″” encoding=”"GB2312″” ?>”
另外,寫成:
Response.write vbCrlf & vbTab & vbTab & “<subsort>”
更容易觀察.
標(biāo)簽: XML/RSS
相關(guān)文章:
主站蜘蛛池模板: 长治市| 塔河县| 周至县| 哈巴河县| 图木舒克市| 筠连县| 通渭县| 新龙县| 容城县| 岐山县| 赣州市| 德惠市| 浮梁县| 都匀市| 武威市| 鹰潭市| 泸水县| 东源县| 阜康市| 安顺市| 阜康市| 施甸县| 晴隆县| 平果县| 定州市| 兰考县| 当涂县| 元朗区| 周宁县| 定结县| 本溪| 德令哈市| 大石桥市| 修水县| 宜兰市| 兴城市| 柘城县| 纳雍县| 顺义区| 望江县| 建始县|