2.2.1.2.57 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 is submitted. It MUST be either an absolute URL or server-relative URL or relative to the form template’s location.

method: This attribute specifies the HTTP method that is used to submit the form. This value MUST be "POST", as specified in [HTML] section 17.13.1.

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>