|
-
Dec 5th, 1999, 02:36 AM
#4
Addicted Member
OK. ASP stands for Active Server Pages (find more at www.activeserverpages.com) and CGI stands for Common Gateway Interface. When writing a CGI script people mainly use a language called Perl (www.perl.com)
Anyway, it looks to me like you can use VB to execute the url that you gave me. I would suggest using the Inet control (see www.vbsquare.com/internet/):
b() = Inet1.OpenURL("https://www.retirelink.com/wconnect/wc.dll?DataServer~Checklogin~LOGIN~home.asp", icByteArray)
This sets the byte variable b to the output content of the url. To get readable results from b, do this:
For intCount = 0 To UBound(b)-1
strData = strData & Chr(b(intCount))
next
strData will now contain the output that you would see in your browser (well, it gives the source code of the output page)
------------------
"To the glory of God!"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|