How to loop through all querystrings of the page?

SheoNarayan
Posted by SheoNarayan under ASP.NET category on | Views : 6850
There are several ways to do that, Below is one of them

 foreach (string q in Request.QueryString)
{
Response.Write(q + " = " + Request.QueryString[q].ToString());
}

Comments or Responses

Login to post response