Jump to content

Querystring

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 80.42.175.188 (talk) at 10:21, 8 October 2005 (An introduction to the querystring). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

The querystrings are the parameters of a web-page. The querystring and the URL are separated by a question-mark (?). Querystring are ofen automatically made when one submits a form. You can also, however, create your own querystring in ASP or ASP.NET. You may see querystrings like

example.aspx?lang=en&size=10

The web-designer would most likely have made the lang querystring one that would have changed the language and the size querystring change the text size. You may have noticed that there is an ampersand (&) between the two querystring parameters. This separates the querystrings.