Cannot InvokeMember on HTML Page
I have a VB Net application that I have been running for over a year to login to a specific website
Heritage Coins & Currency
The page I'm now unable to loging is --> https://coins.ha.com/c/login.zx
I am setting the text boxes as follows:
WB1.Document.All("emailAddress").SetAttribute("Value", "sge")
WB1.Document.All("password").SetAttribute("Value", "7476")
Even though these values do actually display on the screen when I do GetAttribute I see that I have set the values.
?WB1.Document.All("emailAddress").getAttribute("Value")
"sge"
?WB1.Document.All("password").getAttribute("Value")
"7476"
When i do InvokeMember as follows NOTHING HAPPENS and I receive no msgs
WB1.Document.GetElementById("loginButton").InvokeMember("click")
The HTML code smippet is:
<input id="loginButton" name="loginButton" value="Sign-In" type="submit" tabindex="3">
<input name="source" type="hidden" value="" />
<input name="forceLogin" type="hidden" value="" />
<input name="loginAction" value="log-in" type="hidden">
I am an inexperienced Net programmer and I do not have a clue how to resolve
thanks
sandy