Magazine |
| | Community |
| | Workshop |
| | Tools & Samples |
| | Training |
| | Site Info |
|
|
||||||||
|
Retrieves how the form data should be sent to the server, either as GET or POST.
Syntax
HRESULT get_method( BSTR *p );
Parameters
- 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.
Return Value
Returns S_OK if successful, or an error code otherwise.
See Also
Specifies how the form data should be sent to the server, either as GET or POST.
Syntax
HRESULT put_method( BSTR v );
Parameters
- 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.
Return Value
Returns S_OK if successful, or an error code otherwise.
See Also
Does this content meet your programming needs? Write us!
© 1998 Microsoft Corporation. All rights reserved. Terms of use.