Plumtree UI Infrastructure API  
 

HTMLGenericInputElement.ValidateName Method 

This method must be implemented by concrete subclasses to throw an HTMLException if the name attribute of this element does not meet the standards of this particular concrete class.

For example, the HTMLInput class implements this method to throw an HTMLException if the name attribute is not set to begin with "in_" followed by a two-letter code designating the type of the input.

The validation that occurs is at the discretion of the subclass, but should enforce some level of quality.

public abstract void ValidateName(
   string s
);

Parameters

s

See Also

HTMLGenericInputElement Class | com.plumtree.xpshared.htmlelements Namespace