0 out of 4 rated this helpful - Rate this topic

send method

Transmits a data string to the server for processing.

Internet Explorer 8

Syntax

var retval = XDomainRequest.send(varBody);

Parameters

varBody [in, optional]

Type: Variant

Receives a Variant of type String containing the data to transmit to the server. If omitted, the behavior is identical to that of sending an empty string ( "" ).

Return value

Type: HRESULT

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Examples


  
// 1. Create XDR object 
xdr = new XDomainRequest(); 

// 2. Open connection with server using POST method
xdr.open("POST", "http://www.contoso.com/xdr.txt");

// 3. Send string data to server
xdr.send("data to be processed");   
                

See also

Reference
IHTMLXDomainRequest
XDomainRequest

 

 

Send comments about this topic to Microsoft

Build date: 11/29/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.