I'm trying to send ampersand as a value of one of the url parameter but without any success.
Response.Redirect(String.Format("WebForm.aspx?P1=&P2=&P3="));
E.g. "WebForm.aspx?P1=John&P2=Smith&P3=Del&Company" returns John Smith Del. So everything after ampersand as a value in url is trimmed.
Is there any trick how to handle this issue.
Note: The url is feeded by parameters from somewhere else.