How I can pass a query string with special characters?
For example I need to pass \"&\" inside my query string as below:
../solrresults.asp?mode=
Use Server.UrlEncode:
URLEncode converts characters as follows: Spaces ( ) are converted to plus signs (+). Non-alphanumeric characters are escaped to their hexadecimal representation.
Use it this way;
here