webbrowser
https://www.itslb.com/tms/
Dim frmform As HtmlElement = WebBrowser1.Document.Forms("aspnetForm") frmform.All("ctl00_lnkLogin").InvokeMember("Click") frmform.All("ctl00_txtUserName").SetAttribute("value", sUserID) frmform.All("ctl00_txtPassword").SetAttribute("value", sPWD) frmform.GetElementsByTagName("select")(0).Document.GetElementsByTagName("option")(1).SetAttribute("selected", "true") 'frmform.All("ctl00$cboTerminal").InvokeMember("SelectedIndexChanged") 'frmform.GetElementsByTagName("select")(0).Document.GetElementsByTagName("option")(1).SetAttribute("selected", "true") frmform.All("ctl00_btnLogin").Enabled = True frmform.All("ctl00_btnLogin").InvokeMember("Submit")
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)