Search found 2 matches
- Fri May 21, 2004 6:55 pm
- Forum: Technical / Scripting
- Topic: VBscript Error - HTTP
- Replies: 1
- Views: 3575
VBscript Error - HTTP
I have modified one of the VBscripts to run a Web page as shown below: VBSTART Dim IE Sub CreateIE Set IE = CreateObject("InternetExplorer.Application") IE.visible = 1 End Sub Sub Navigate(URL) IE.navigate URL End Sub Sub WaitBusy do while IE.Busy loop End Sub Sub DestroyIE IE.Quit Set IE = Nothing ...
- Fri May 21, 2004 6:22 pm
- Forum: Technical / Scripting
- Topic: HTTP Request - no parameters
- Replies: 2
- Views: 4549
HTTP Request - no parameters
I want to open and run an ASP page using HTTPRequest, but there are no input parameters. Should I use Post or Get? What to do about the parameters?
Thanks
Thanks