Public Access Interface Asp Functions And Variables; Javascript Syntax - HP MSM7xx Management And Configuration Manual

Hide thumbs Also See for MSM7xx:
Table of Contents

Advertisement

Public access interface ASP functions and
variables
The public access interface Web pages use a number of ASP functions to perform specific
tasks. These ASP functions are written in embedded Javascript, which is a limited version of
Javascript running on the integrated Web server.
Also, a number of ASP variables are defined that can be used to store and retrieve
configuration and user settings. There are two types of variables:
ASP variables: The values of these variables must be loaded before they can be used by
calling the appropriate ASP function. Values are only persistent per page. Therefore they
must be loaded separately on each page before use.
Session variables: Session variables are persistent across all public access pages.

Javascript syntax

The following syntax is used by embedded Javascript code.
Equality operators
Conditional operators
Unary operator
String operator
Arithmetic operators
Control flow

Public access interface ASP functions and variables

Syntax
==
!=
>
>=
<
<=
&&
||
!
+
+
-
/
*
( )
if (logical condition) {} else {}
for(start; until; steps) { }
Working with RADIUS attributes
Description
Equal to
Not equal to
Greater than
Greater than or equal to
Less than
Less than or equal to
Conditional And
Conditional Or
Not (Inverts the value of a
boolean value.)
Concatenates two strings.
Addition.
Subtraction.
Division.
Multiplication.
Priority of evaluation.
If then else statement.
Looping.
15-75

Advertisement

Table of Contents
loading

Table of Contents