Jump to content

Querystring

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mensuur (talk | contribs) at 15:59, 18 November 2005. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

The querystring is the parameter of a web-page. The querystring and the URL are separated by a question-mark (?). Querystrings are often 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 this:


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.

Article written by: --Mensuur 15:59, 18 November 2005 (UTC)