HttpServerUtility::Execute Method

 

Executes the handler for a specified resource in the context of the current request and returns execution to the page that invoked it.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

NameDescription
System_CAPS_pubmethodExecute(IHttpHandler^, TextWriter^, Boolean)

Executes the handler for the specified virtual path in the context of the current request. A TextWriter captures output from the executed handler and a Boolean parameter specifies whether to clear the QueryString and Form collections.

System_CAPS_pubmethodExecute(String^)

Executes the handler for the specified virtual path in the context of the current request.

System_CAPS_pubmethodExecute(String^, Boolean)

Executes the handler for the specified virtual path in the context of the current request and specifies whether to clear the QueryString and Form collections.

System_CAPS_pubmethodExecute(String^, TextWriter^)

Executes the handler for the specified virtual path in the context of the current request. A TextWriter captures output from the executed handler.

System_CAPS_pubmethodExecute(String^, TextWriter^, Boolean)

Executes the handler for the specified virtual path in the context of the current request. A TextWriter captures output from the page and a Boolean parameter specifies whether to clear the QueryString and Form collections.

Return to top
Show: