







Create a <form> tag.
Namespace:
HttpServer.Helpers
Assembly:
HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
[ObsoleteAttribute("Moved to FormHelper")] public static string FormStart( string name, string action, bool isAjax ) |
Visual Basic (Declaration) |
---|
<ObsoleteAttribute("Moved to FormHelper")> _ Public Shared Function FormStart ( _ name As String, _ action As String, _ isAjax As Boolean _ ) As String |
Visual C++ |
---|
[ObsoleteAttribute(L"Moved to FormHelper")] public: static String^ FormStart( 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);