Returns the RequestDispatcher for the specified resource.
Syntax
getRequestDispatcher( context , string )
context.getRequestDispatcher( string )
Parameters
context
|
the Context object.
|
string
|
the path to the resource.
|
Returns
requestdispatcher
|
the RequestDispatcher for the specified resource. null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
request_dispatcher = Context( ).getRequestDispatcher( path )
|