Se vuoi richiamarlo e basta cerca "VB Links" di F.Botta
Se invece vuoi gestire i risultati dell'asp...
The easiest way is using Microsoft Internet Transfer Control.
To test, you can put an Internet Transfer control on a form and run the
following code:
Dim str as string
str = Inet1.OpenURL("Your ASP's URL")
MsgBox str
You can also use APIs or use the XMLHTTP object as the following code.
Dim HttpReq As New MSXML2.XMLHTTP
HttpReq.open "GET", "http://XMLSampleServer/CatalogServer.asp", False
HttpReq.send
MsgBox HttpReq.responseText
![]()


Rispondi quotando