Contents Index Topic Contents | ||
Previous Topic: IHTMLFormElement::put_method Next Topic: IHTMLFormElement::get_elements |
IHTMLFormElement::get_method
HRESULT get_method( BSTR *p );Retrieves how the form data should be sent to the server, either as GET or POST.
- Returns S_OK if successful, or an error value otherwise.
- p
- Address of a variable that reeives the send method. Can be one of these values:
get Append the arguments to the action URL and open it as if it were an anchor. post Send the data through an HTTP POST transaction. See also put_method
IHTMLFormElement::put_method
HRESULT put_method( BSTR v );Specifies how the form data should be sent to the server, either as GET or POST.
- Returns S_OK if successful, or an error value otherwise.
- v
- String specifying how to send the data. Can be one of these values:
get Append the arguments to the action URL and open it as if it were an anchor. post Send the data through an HTTP POST transaction. See also get_method
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.