|
Home » Development Area » DigiGuide Listings Grabber » API Index » Class: XMLHttpRequest » open Method
Class XMLHttpRequest : open Method
| void open( String method, String URL, [ Boolean async ], [ String userName ], [ String password ] ) |
Summary
Open a connection to use to make our requests.
Parameters
| Parameter | Description |
| String method |
Can be GET, POST, or HEAD. Nothing else is currently supported. |
| String URL |
Full URL |
| Boolean async [optional] |
Needs to be False. |
| String userName [optional] |
The user name used to authenticate with. |
| String password [optional] |
The password used to authenticate with. |
|
|
|
Examples
var client = new XMLHttpRequest(); client.open("GET", "http://www.digiguide.com/i/nav/banner_gradient.gif", false );
|
Requirements
Build Build 1
(Last updated: October 12, 2007 16:17:15)
|
|