Returns the RequestDispatcher for the named Servlet.
Syntax
getNamedDispatcher( context , string )
context.getNamedDispatcher( string )
Parameters
context
|
the Context object.
|
string
|
the name of the Servlet.
|
Returns
requestdispatcher
|
the RequestDispatcher for the named Servlet. null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
request_dispatcher = Context( ).getNamedDispatcher( name )
|