Wednesday, January 23, 2008

Modifying Query String in .net

Sometimes we need to modify the query string values of URL. For Example : Consider our Current URL is : http://www.mysite.com/MyHomePage.aspx?Value=x and, we want to change it as : http://www.mysite.com/MyHomePage.aspx?Value=y We can access all the Query Strings from Request.QueryString["query_string_name"],...