Querystring: Difference between revisions

Content deleted Content added
Mensuur (talk | contribs)
No edit summary
Redirect to Query string
 
(9 intermediate revisions by 5 users not shown)
Line 1:
#REDIRECT [[Query string]]
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:
 
----
 
<tt>example.aspx?lang=en&size=10</tt>
 
----
 
The web-designer would most likely have made the <nowiki>lang</nowiki> 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: --[[User:Mensuur|Mensuur]] 15:59, 18 November 2005 (UTC)