LInetHttp::SendForm

#include "ltwrappr.h"

L_INT LInetHttp::SendForm(pNameValue, uCount)

pNAMEVALUE pNameValue;

/* pointer to a structure */

L_UINT32 uCount;

/* number of name/value pairs */

Sends a form to an HTTP server.

Parameter

Description

pNameValue

Pointer to an array of structures that contain the name and value pairs associated with the form. This information corresponds to the name and value you would provide if programming in HTML.

uCount

The number of name/value pairs.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function allows you to simulate submitting a form to an Internet browser. You do not need an Internet browser to use this function.

Required DLLs and Libraries

LTWEB

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

See Also

Functions:

LInetHttp::OpenRequest, LInetHttp::SendBitmap, LInetHttp::SendData, LInetHttp::SendRequest, Class Members

Topics:

HTTP Functions: Sending / Getting Data

 

How to Program with the LInetHttp Class

Example

For an example, refer to LInetHttp::LInetHttp.