UrlDecode !!! retrieving querystring from an 'escaped' url

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Patrick,
Thanks for your response. Actually, UrlDecode would decode the url, but then
how do I use request.querystring? Do I have to 'manually' parse the
querystring?

Thanx
 
What exactly is an escaped URL?

mavrick101 said:
Patrick,
Thanks for your response. Actually, UrlDecode would decode the url, but
then
how do I use request.querystring? Do I have to 'manually' parse the
querystring?

Thanx
 
By 'escaped' url I mean, in javaScript
escape(myqueryString);
in ASP
Server.UrlEncode(myqueryString)

or in other terms
having '=' replaced by %3d ' ' replaced by %2d etc etc....
 
Back
Top