HtmlTextWriter.IsValidFormAttribute(String) Method

Definition

Checks an attribute to ensure that it can be rendered in the opening tag of a <form> markup element.

C#
public virtual bool IsValidFormAttribute(string attribute);

Parameters

attribute
String

A string that contains the name of the attribute to check.

Returns

Always true.

Remarks

The HtmlTextWriter class implementation of the IsValidFormAttribute method returns true for all attributes. Override the IsValidFormAttribute to limit the attributes that can be rendered in the opening tag of a <form> element.

Notes to Inheritors

Override the IsValidFormAttribute(String) method to return true only for those attributes that can be included in the <form> element of the markup for which the class derived from the HtmlTextWriter class is intended.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also