Hi all, When i do this:
Response.Redirect("./blah.aspx?key=my value with spaces");
It sends the browser to:
mysite/blah.aspx?key=my%20value%20with%20spaces
Now i understand why it's doing this - for the sake of ancient browsers that would choke on the spaces. But really, what i want is to have a nice-looking url with spaces instead of %'s everywhere, because it works just the same.
Is there some way to stop response.redirect urlencoding my spaces?
Thanks a lot