|
These are called querystrings. They work exactly like a form field from a form.
Like where you have ID = 2. from a form this would be set up as a form value but as a QS it would be
Dim Result
result = request.querystring("ID")
They're great for querying data. Let's say you want to create hyperlinks from a search that a user did for data, you could have a unique value for each record that was returned and insert it where "ID" is.
|