|
|
Title | Make a VB program fetch results from an ASP or ASPX page |
Keywords | ASP, ASPX, active server pages, Web, browser, fetch |
Categories | Internet, Controls |
|
|
Use the Internet Transfer Control to "open" the ASP or ASPX page. The OpenURL method returns the result of the page's execution.
|
|
Private Sub cmdFetch_Click()
txtResults.Text = Inet1.OpenURL(cboUrl.Text)
End Sub
|
|
|
|
|
|