i want to accomplish the same as the build-in browser, fill a form from a website with a value from my textbox, but i cant seem to get it to work or find an answer on internet
i've got it working with the build-in browser, with this code:
WebBrowser1.Document.GetElementById("ctl00_ContentPlaceHolder1_txtUserName").SetAttribute("value", TextBox1.Text)
I'm using winforms ( VB.NET )
i want to accomplish the same as the build-in browser, fill a form from a website with a value from my textbox, but i cant seem to get it to work or find an answer on internet
i've got it working with the build-in browser, with this code:
WebBrowser1.Document.GetElementById("ctl00_ContentPlaceHolder1_txtUserName").SetAttribute("value", TextBox1.Text)
How do i make this work with CefSharp?
Greetings!