你好,我是使應用程序登錄到Nexon.net,我不能讓它的工作,因爲文本字段好像還沒有ID使用GetElementByID
....vb.net Web瀏覽器登錄
,這是我試過的代碼,但它不工作=/
Dim Username, Password As String
Username = TextBox1.Text
Password = TextBox2.Text
WebBrowser1.Document.GetElementById("userID").SetAttribute("value", Username)
WebBrowser1.Document.GetElementById("password").SetAttribute("value", Password)
WebBrowser1.Document.GetElementById("gnt_login_submit").InvokeMember("click")
我試圖用這個來驗證登錄,但不工作
If (Not WebBrowser1.Document.All.Item("gnt_play_button") Is Nothing) Then
MsgBox("Incorrect Username/password , ", 0, "Login error!")
謝謝您的回答發送這些值,但一直給我NullReference錯誤=/ –
這是登錄表單的樣子,「」 –