Hello Sirs,
I have come across a lil problem, and that is... I passed an Encoded (to their Hex Value) string to an asp file via the address bar...
it was like... http://www.awazofasia.net.tc/test.asp?songlist= %59%6F%75%72%20%53%65%63%72%65%74%20%4D%65%73%73%61%67%65%20 %69%73%20%54%68%69%73%21
the test.asp simply had this
[code]<%
somevariable=Request("songlist")
Response.Write(somevariable)
%>
but when i tested it.. it automatically decoded the encoded value. how can i do something as to make it *Not* decode the string value that i pass ??
is it possible ? 