Guys i need to verify the login details of the following website:
In my application i have two fields txtusername, txtpassword, when the user
hit submit button, i have to check the login details true or not.
I tried with webbrowser control. But i need it wil done by background.
My Code:
Code:
Public Class Form1
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
WebBrowser1.Document.All("vb_login_username").SetAttribute("value", txtusername.Text)
WebBrowser1.Document.All("vb_login_password").SetAttribute("value", txtpass.Text)
End Sub
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
If WebBrowser1.Document.Body.InnerText.Contains("Forgotten your password?") Then
MsgBox("Incorrect password try again")
End If
End Sub
End Class
How to invoke a button click of login via my program and how to read the response! Please helpme out
Advance thanks
Last edited by kpmsiva; August 30th, 2009 at 07:28 PM.
Reason: Removing domain name [External link]
What are you using this code for? Any specific reason why you want an autologin?
Use [code]your code here[/code] tags when you post source code
Search here before you post your question, someone might have already asked it before. My Articles
What are you using this code for? Any specific reason why you want an autologin?
First of al thanks for your reply...
We are giving the restriction to use this software. Only register member can use this software. For that i need this. Though i am not the admin, am super moderator. So i cant access directly database.
It is a forum and I am sure they will have a login mechanism. Why do you want to override that? And I am sure only registered members would have access to the forum.
There are ways to do auto-login, but unless you come up with a good explanation of why this is required, people here would be hesitant to help.
Use [code]your code here[/code] tags when you post source code
Search here before you post your question, someone might have already asked it before. My Articles
It is a forum and I am sure they will have a login mechanism. Why do you want to override that? And I am sure only registered members would have access to the forum.
There are ways to do auto-login, but unless you come up with a good explanation of why this is required, people here would be hesitant to help.
Its a standalone software, which help to download files from different hosts such as rapidshare, megaupolad and hotfile as a premium user. In first wizard forum username and password can be given by user and i have to check login detail correct or not, if correct proceed the download wizard else say error message. Thought i am not the admin, so i cant access db directly
Bookmarks