GetURLParameter: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
== Description ==
== 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 ==
== Example ==


<pre>
<pre>
Rem GetURLParameter Example
Rem GetUrlParameter Example
Print GetURLParameter("Status")
Print GetUrlParameter("Status")
</pre>
</pre>


Line 20: Line 20:
== Related Items ==
== Related Items ==


[[form|FORM]]
[[form|Form]]


[[Category:Language Reference]]
[[Category:Language Reference]]

Revision as of 01:02, 24 August 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

Related Items

Form