2.2.76 useHttpHandler

The useHttpHandler element specifies that the form MUST be submitted to the specified URL using the specified HTTP method.

Parent Elements

submit

Attributes:

href: This attribute specifies the URL to which the form (1) is submitted.

method: This attribute specifies the HTTP method that is used to submit the form (1). This value MUST be "POST".

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this element.

 <xsd:element name="useHttpHandler">
   <xsd:complexType>
     <xsd:attribute name="method" use="required">
       <xsd:simpleType>
         <xsd:restriction base="xsd:NMTOKEN">
           <xsd:enumeration value="POST"/>
         </xsd:restriction>
       </xsd:simpleType>
     </xsd:attribute>
     <xsd:attribute name="href" type="xsd:anyURI" use="required"/>
   </xsd:complexType>
 </xsd:element>