'How decode my encode xml data?
In the "Stage 1" , i encode my xml data
In the "Stage 2", How i decode the "Stage 1" Encode data?
hoping you开发者_运维知识库r support
Asp Classic does not supply a Decode function. You are supposed to retain the decoded bits to use it later.
In your sample:
<%
url="<PaginationData currentPage=""1"" totalPages=""9""/>"
''//Stage 1
datas=Server.URLencode(url)
response.write "Encode = " & datas & "<br /><br />"
''//Stage 2
response.write "Decode = " + url
%>
精彩评论