Redirects the client to the given URL using the specified response object.
Syntax
redirect( response , string )
response.redirect( string )
Parameters
response
|
the response object to use.
|
string
|
the url to redirect to.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
This method can only be used before any output. An exception will occur if this method is used after output is made.
Example
Response( ).redirect( url )
|