I am facing one problem while storing a querystring value in a variable. My url is something like shown below:
http://localhost:1372/testapp/default.aspx?Search=%family%
Below is what I tried:
string result = Request.QueryString["Search"].ToString();
When I tried to save the querystring search in variable its taking value as �mily% .
How can I get value of search parameter as family?
Thanks in advance.
UrlEncodethe parameter.