GetURLParameter: Difference between revisions
Jump to navigation
Jump to search
Created page with "GETURLPARAMETER(''varName'') '''Description''' GetURLParameter returns the value of parameter ''varName'' from the query string which started the app. If the app was started..." |
m Ghenne moved page Geturlparameter to GetURLParameter |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
GetURLParameter(''varName'') | |||
== Description == | |||
GetURLParameter returns the value of parameter ''varName'' from the query string which started the app. If the app was started from the Home screen or a browser, it is blank. It only has values if the app was started by a server side script. See Tutorial 7 for more information. | GetURLParameter returns the value of parameter ''varName'' from the query string which started the app. If the app was started from the Home screen or a browser, it is blank. It only has values if the app was started by a server side script. See Tutorial 7 for more information. | ||
== Example == | |||
<pre> | <pre> | ||
Rem GetURLParameter Example | |||
Print GetURLParameter("Status") | Print GetURLParameter("Status") | ||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 18: | Line 18: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[form| | [[form|Form]] | ||
[[Category:Language Reference]] | |||
[[Category:Miscellaneous]] |
Latest revision as of 11:42, 6 November 2012
GetURLParameter(varName)
Description
GetURLParameter returns the value of parameter varName from the query string which started the app. If the app was started from the Home screen or a browser, it is blank. It only has values if the app was started by a server side script. See Tutorial 7 for more information.
Example
Rem GetURLParameter Example Print GetURLParameter("Status")
Output
Thanks