I want to build a webpage that is only accessible by a VB software product.
The page is password protected, and I need the product to programmatically log in.
My code:
'Enter password to gain access.
WebBrowser1.Document.GetElementById("pwbox-107").SetAttribute("value", "MySecretPassword")
Problem is, "MySecretPassword" does not get inserted into the password box. Why? This same code worked on my asp.net website. I'm guessing this problem is related to it being Linux instead of Windows.
Does anyone have a solution to this? Will I have further problems reading strings on my special page using VB code?
Thanks.