FatCow Plan for $3.67/mo. only HostPapa 100% Green Energy Web Hosting
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
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?
Visit this user's website Find all posts by this user
Quote this message in a reply
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.
Find all posts by this user
Quote this message in a reply
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.
Find all posts by this user
Quote this message in a reply
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]
Find all posts by this user
Quote this message in a reply
11-03-2012, 04:11 PM
Post: #5
RE: What is Query string collection in asp?
Nice Sharing...Thanks

simple shopping cart
Find all posts by this user
Quote this message in a reply
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
Find all posts by this user
Quote this message in a reply
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.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)