|
What is Query string collection in asp?
|
|
05-21-2012, 04:54 AM
Post: #1
|
|||
|
|||
|
What is Query string collection in asp?
What is Query string collection in asp?
|
|||
|
06-09-2012, 02:12 PM
Post: #2
|
|||
|
|||
|
RE: What is Query string collection in asp?
The QueryString collection is used to retrieve the variable values in the HTTP query string.
|
|||
|
06-18-2012, 09:26 AM
Post: #3
|
|||
|
|||
|
RE: What is Query string collection in asp?
The string is posted to the URL using the HTTP GET method, so that ASP.Net easily read mydata variable in QueryString.
|
|||
|
06-22-2012, 12:22 PM
Post: #4
|
|||
|
|||
|
RE: What is Query string collection in asp?
The QueryString collection is used to retrieve the variable values in the HTTP query string.
The HTTP query string is specified by the values following the question mark (?), like this: <a href= "test.asp?txt=this is a query string test">Link with a query string</a> The line above generates a variable named txt with the value "this is a query string test". Query strings are also generated by form submission, or by a user typing a query into the address bar of the browser. Note: If you want to send large amounts of data (beyond 100 kb) the Request.QueryString cannot be used. Syntax Request.QueryString(variable)[(index)|.Count] |
|||
|
11-03-2012, 04:11 PM
Post: #5
|
|||
|
|||
|
RE: What is Query string collection in asp?
Nice Sharing...Thanks
simple shopping cart |
|||
|
01-22-2013, 06:10 AM
Post: #6
|
|||
|
|||
|
RE: What is Query string collection in asp?
The Query string collection is a name / value collection, which assembled from the values after the ? in a url.
Continuing Legal Education Transportation Law |
|||
|
04-08-2013, 03:57 AM
Post: #7
|
|||
|
|||
|
RE: What is Query string collection in asp?
The QueryString collection is a parsed version of the QUERY_STRING variable in the ServerVariables collection. It enables you to retrieve the QUERY_STRING variable by name.
|
|||
|
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)






