Namespace: MonoSoftware.Web
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public static void SetFormActionUrl(
	this HttpResponse response,
	string formActionUrl
)
Visual Basic
<ExtensionAttribute> 
Public Shared Sub SetFormActionUrl ( 
	response As HttpResponse,
	formActionUrl As String
)
Visual C++
public:
[ExtensionAttribute]
static void SetFormActionUrl(
	HttpResponse^ response, 
	String^ formActionUrl
)
F#
static member SetFormActionUrl : 
        response : HttpResponse * 
        formActionUrl : string -> unit 

Parameters

response
Type: System.Web..::..HttpResponse
formActionUrl
Type: System..::..String

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpResponse. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also