• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

What is Query string collection in asp?

Query String

QueryString Collection is a class in ASP.NET which lets you retrieve information from a URL..

Example :

someurl?type=master

Request.QuerrySting("type")

will return "master"..
 
The query string collection is basically used to retrieve the variable values in the HTTP query string. It is the collection of characters input to the computer or the web browser. They are helpful when we want to transfer a value from one page to another page.
 
Back
Top