Trace the login page with a socket spy app and send that data in winsock...
That's just a general example, you need to see how IE logs into the page using a packet watcher.VB Code:
'pretend this is a button clickie sub... Winsock1.Connect "www.website.com", 80 End Sub Winsock1_Connect() Winsock1.SendData "POST [url]www.website.com/LoginWhatever.php?[/url] HTTP/1.1" & VbCrLf _ & "Host: [url]www.website.com[/url]" & VbCrLf _ & "Content-Length: " & Len(LoginText) & VbCrLf & VbCrLf _ & LoginText




Reply With Quote