|
-
January 12th, 2003, 04:53 PM
#1
Calling a Web URL from VB.NET
I am trying to 'call' a web hosted php program/script from a VB.Net aplication.
The script has no output, but needs to run every day.
I have set a timer to trigger at the correct intervals,
But don't know what i don't know.
I have everything done, but I cannot find how to call the url.
I think it used to be an OpenURL call in an older activeX control, but I cannot locate the current equivalent in .Net. There is also a method in Wininet.dll, but it does not seem to referenceable from VB.NET
Please help.
Thanks
...
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Private Sub Timer1_Tick(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Timer1.Tick
Dim url AS String = "http://www.stuff.com/doit.php
'somthing like...
result = INETService.OpenURL( url )
End Sub ' tmrClock_Tick
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
|