| |
 |
| Overview |
|
AspTear allows you to retrieve web pages from servers
easily with a bunch of features.
Here's a list of the component's main features:
- Supports GET and POST
- Send query strings and POST data to the server
- Access HTTP and HTTPS resources
- Log in to secured sites with username/password
|
| User Manual |
Set xObj = Server.CreateObject("SOFTWING.AspTear")
strRetVal = xObj.Retrieve(strUrl, nRequestType, strQueryString|strPostData, strUsername, strPassword)
nRequestType
POST = 1
GET = 2
|
| Example |
<%
Const Request_POST = 1
Const Request_GET = 2
Set xobj = CreateObject("SOFTWING.ASPtear")
strRetval = xobj.Retrieve("http://www.terrasite.com", Request_GET, "", "", "")
Response.Write strRetval
%>
|
|
 |
|
|
|