Returns the value associated with the specified Context's initialization parameter name.
Syntax
getInitParameter( context , string )
context.getInitParameter( string )
Parameters
context
|
the Context object.
|
string
|
the name of the Context initialization parameter.
|
Returns
string
|
the value associated with the specified Context's initialization parameter. null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
value = Context( ).getInitParameter( name )
|