Used to indicate the status code of the specified response object.
Syntax
status( response )
response.status( )
Parameters
response
|
the response object to use.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if Response( ).status( ) = _STATUS_OK( ) then
break
end
Syntax
status( response , integer )
response.status( integer )
Parameters
response
|
the response object to use.
|
integer
|
the status code.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Example
Response.status( _STATUS_NOT_MODIFIED( ) )
|