How do I fix my querystring value?

  • Thread starter Thread starter ffrugone
  • Start date Start date
Thanks, worked like a charm.
Server.URLEncode on the sender
and
Server.URLDecode on the receiving page

I need to pass a querystring parameter that contains the relative path
and querystring of another page. For example:

http://www.mysite.com/default.aspx?name=~/news_view.aspx?articleid=9&comment=new

when I do this and retrieve the querystring["name"] I only get
~/news_view.aspx?articleid=9

I need to convert the value so that it doesn't seperate into two keys.

How can I do this?
 
Back
Top