Class HtmlAttributesForm
- Namespace
- Contensive.CPBase.BaseModels
- Assembly
- CPBase.dll
Attributes for html form
public class HtmlAttributesForm : HtmlAttributesGlobal
- Inheritance
-
HtmlAttributesForm
- Inherited Members
Properties
acceptcharset
Specifies the character encodings that are to be used for the form submission. A space-separated list of one or more character encodings that are to be used for the form submission. Common values: UTF-8 - Character encoding for Unicode, ISO-8859-1 - Character encoding for the Latin alphabet.
public string acceptcharset { get; set; }
Property Value
action
Specifies where to send the form-data when a form is submitted
public string action { get; set; }
Property Value
autocomplete
Specifies whether a form should have autocomplete on or off
public bool autocomplete { get; set; }
Property Value
enctype
Specifies how the form-data should be encoded when submitting it to the server (only for method="post")
public HtmlAttributesForm.HtmlEncTypeEnum enctype { get; set; }
Property Value
method
Specifies the HTTP method to use when sending form-data
public HtmlAttributesForm.HtmlMethodEnum method { get; set; }
Property Value
name
Specifies the name of a form
public string name { get; set; }
Property Value
novalidate
Specifies that the form should not be validated when submitted
public bool novalidate { get; set; }
Property Value
target
Specifies where to display the response that is received after submitting the form
public HtmlAttributesForm.HtmlAttributeTarget target { get; set; }