'如何解码我的编码xml数据?

时间:2010-03-25 08:51:43

标签: xml asp-classic

“)     response.write“Encode =”datas&“”     ''#Stage 2     response.write“Decode =”''#我如何再次解码我的编码数据?     %GT;

在“阶段1”中,我编码我的xml数据

在“第2阶段”中,我如何解码“第1阶段”编码数据?

希望得到您的支持

1 个答案:

答案 0 :(得分:1)

Asp Classic不提供解码功能。您应该保留解码的位以便以后使用它。

在您的样本中:

<%

url="<PaginationData currentPage=""1"" totalPages=""9""/>"

''//Stage 1
datas=Server.URLencode(url)

response.write "Encode = " & datas & "<br /><br />"

''//Stage 2
response.write "Decode = " + url

%>