Hello All,
I am currently developing an application in VB.net that opens up a web document via Web Browser Control, parses the HTML, and sends back the data I need. This is not a problem. However, one of the sites requires basic authorization to access. I know the following code will work:
WebBrowser1.Navigate(“http://username:password@website.com”)
But my issue is that we only require a user name and no password. I am using the following code but am having no success:
WebBrower1.Navigate(“http://username: @website.com”)
The dialog box will come up with “username” in the User Name box, but the window focus will be on the password box. I need to automatically gain access to the site without having to click the OK button. Is there any way I can get through the basic access without supplying a password, or even past the authentication all togther? Or maybe a SendKeys?
Any Suggestions would be great.
Thanks.