I need to create GET parameters containing '&'s without creating new parameters for each '&'s.
For instance the following URL :
http://example.com/?action=redirect&url=http://web.com/home.aspx?action=add&ref=aaa
will give me :
action = 'redirect'
url = 'url=http://web.com/home.aspx?action=add'
ref = 'aaa'
But I want :
action = 'redirect'
url = 'url=http://web.com/home.aspx?action=add&ref=aaa'
It's in the context of a c#.net application and i'd rather not use POST parameters.
Is it even possible ?
Thanks