This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Handles the request. This is where you put your business logic.

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

Syntax

C#Copy imageCopy Code
public abstract void HandleRequest(
	 context
)
Visual Basic (Declaration)Copy imageCopy Code
Public MustOverride Sub HandleRequest ( _
	context As  _
)

Parameters

context
HttpContext
Context.

Remarks

<p>This method should result in a call to one (or more) of the following methods:</p> <p><code>context.Response.BinaryWrite();</code></p> <p><code>context.Response.Write();</code></p> <p><code>context.Response.WriteFile();</code></p> <p><code>someStream.Save(context.Response.OutputStream);</code></p> <p>etc...</p> <p> If you want a download box to show up with a pre-populated filename, add this call here (supplying a real filename).</p> <p> </p><code>Response.AddHeader("Content-Disposition", "attachment; filename=\"" + Filename + "\"");</code> </p>

See Also

Advanced