How do I fix my querystring value?

F

ffrugone

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top