Retrieves the values of the variables in the HTTP query string.
The HTTP query string is specified by values following the "?" (question mark). Different processes can generate a query string. For example, the anchor tag <A HREF="example?string=this is a sample">string sample</A> generates a variable named "string" with the value "this is a sample". Query strings are also generated by sending a form, or by typing a query into the address box of your browser.
Returns the total number of Variable objects in the QueryString collection.
Object.Count
Long.
Read-only.
Determines whether the QueryString collection contains more Variable objects.
Object.HasMoreElements
Boolean.
Read-only.
Retrieves the Variable object corresponding to the specified key value.
object.Element(
Key As AnyType)
String/Integer. String value corresponds to the name of the variable and Integer value represents the variable's index.
Variable object.
Retrieves the Variable object corresponding to the specified key value.
object.Item(
Key As AnyType)
String/Integer. String value corresponds to the name of the variable and Integer value represents the variable's index.
Variable object.
Retrieves the next Variable object from the collection.
object.Next()
None.
Variable.
Resets the pointer to the first variable object in that collection.
object.Reset()
None.
Void.