1. ホーム
  2. Web プログラミング
  3. XML/RSS
  4. XMLの基礎知識

エラーが発生しました。XML ページを表示できません、次のタグが閉じられていません 解決策

2022-01-19 11:06:33
データベースからデータを読み込み、XML形式で表示するのですが、hd、カテゴリー、サブソートなどが閉じられていないと表示されますが、すでに閉じてしまっているので、原因がわかりません?
コピーコード コードは以下の通りです。

<%
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>"
'The statement to connect to the database is omitted
do while not rs.eof
response.write vbcrlf&vbTab&vbTab&vbTab&"<item>"
response.write vbcrlf&vbTab&vbTab&vbTab&vbTab&vbTab&"<id>"&rs("id")&"</id& gt;"
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()
%>

出力には <>"'& の特殊文字を使用できないため、以下のコード詳細のように XmlEncoded を使用する必要があります。
VBScriptのコードです。
コピーコード コードは以下の通りです。

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("field name word"))

また、ファイルエンコーディングの問題であれば、:
Response.write "<?xml version=""1.0″" encoding=""UTF-8″" ?>"
に変更する。
Response.write "<?xml version=""1.0″" encoding=""GB2312″" ?>"
また、出力を開始する前に内容をクリアする必要があります。
クリア
Response.write "<?xml version=""1.0″" encoding=""GB2312″" ?>"
また、. のように書きます。
Response.write vbCrlf & vbTab & vbTab & "<subsort>"
観察がしやすくなる。