|
@isnull() Function |
|
|
@isnull() function is used to check if the given symbol exists. If the symbol exists true is returned even though its value is blank. Syntax: @isnull(symbol) symsbol This function is the opposite of the exists() function
Examples: @doif( isnull(i:NAME) ) .. @doend()
@set(s:/si/SSTR, not(isnull(i:SSTR)) ? i:SSTR : \rl ) @// Assignment is done only if there is a request parameter with name SSTR, otherwise the whole line removed.
|