A QueryString collection retrieves keys and values of the "QueryString" variable in the HTTP header. The QueryString is specified by "key/value" pairs following a question mark (?) in a URL. Several different processes can generate a query string. For example, the anchor tag
<a href="example?string=this is a sample">string sample</a>
This example generates a key named "string" which has a of "this is a sample". Query strings are also generated by sending a form or by a user typing a query into the address box of the browser.
Many querystring values can be passed in the URL if they are properly separated by an ampersand character (&). For example:
anyPage.asp?Query1=Value1&Query2=Value2&Query3=Value3
Querystrings in 20/20 DataShed are used to pass information from one page to another. For example, if you are browsing through listings that are "For Sale", then somewhere in the address bar of your web browser you will see in the querystring:
listings.asp?strCurrentPage=3&transaction_type=For%20Sale
In this example the current page is "3" and the "%20" characters are an encoded version of an empty space.
<!--#include file="folder/folder/file.inc"-->
In this example, the web server includes a file called "file.inc" into the current document.