Hello guys, i need help, i want to make an application where you enter your data and then it will post it to a website form.
- Emil
Hello guys, i need help, i want to make an application where you enter your data and then it will post it to a website form.
- Emil
Why fill up a signature?
Have no idea how to make it. But what you're about to make, is an application that makes a website for you?
I'm pretty sure he means a form, as in a web form. Which you do by grabbing the field names and sending a WebRequest with that as header data.
This is what u need
Code:Dim Elems As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("input") Try For Each elem As HtmlElement In Elems Select Case elem.Name Case "login_email" elem.SetAttribute("VALUE", email.Text) Case "login_password" elem.SetAttribute("VALUE", pwd.Text) Case "submit.x" elem.InvokeMember("click") End Select Next Catch ex As Exception MessageBox.Show(ex.ToString) End Try