GetURLParameter: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Brendon (talk | contribs)
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..."
 
Brendon (talk | contribs)
No edit summary
Line 1: Line 1:
GETURLPARAMETER(''varName'')
GetURLParameter(''varName'')


'''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>


'''Output'''
== Output ==


<pre>
<pre>
Line 18: Line 18:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[form|FORM]]
[[form|FORM]]
[[Category:Language Reference]]

Revision as of 01:25, 17 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