Start Method (String, String, Boolean)

HttpServer.dll

Create a <form> tag.

Namespace:  HttpServer.Helpers
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static string Start(
	string name,
	string action,
	bool isAjax
)
Visual Basic (Declaration)
Public Shared Function Start ( _
	name As String, _
	action As String, _
	isAjax As Boolean _
) As String
Visual C++
public:
static String^ Start(
	String^ name, 
	String^ action, 
	bool isAjax
)

Parameters

name
Type: System..::.String
name of form
action
Type: System..::.String
action to invoke on submit
isAjax
Type: System..::.Boolean
form should be posted as ajax

Return Value

html code

Examples

WebHelper.FormStart("frmLogin", "/user/login", Request.IsAjax);

See Also