c# - How to fill WebBrowser TextBox's? -
I want to login it with my company's user and password with a Winforms application, I display the page on a web browser Am I controlling, any thoughts?
You need to write code to find controls like tags or ID
WebBrowser1.Document.GetElementById ("textName") set attribute ("value") = "ddddd";
Before this code just make sure that the document is completely full, you can use the Web browser document compiled avent handler to do an investigation for this.
Comments
Post a Comment