if encoding using escape(data) in javascript, how to decode it in server side?
I use ajax to post encoding data with escape javas开发者_StackOverflow社区cript function, how can I decode it at the server side with classic asp
If you are passing arguments in URL (get method), do not use encode().. use encodeURI() function instead. Now, the data (I mean the parameters you pass) comes decoded automatically.
精彩评论