I want to log on to this site with my company's user and password from a winforms application, I am displaying the page on a webBrowser control, any Ideas?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
| show 2 more comments |
|
You need write code to find controls by tag or id like
webBrowser1.Document.GetElementById("textName").SetAttribute("value") = "ddddd" ;
Before this code just make sure document is completely loaded. You can use WebBrowserDocumentCompletedEventHandler to do a check for this. |
|||||
|
|
|
Install Firebug in Firefox, and open the firebug console to view the postback that is sent when you login. You can then use this information to perform a postback using WebRequest class to login directly from your Winform application. |
|||
|
|
|
There is a web-UI testing framework called watin. But this does many things other than what you are looking for & I don't know, if you really need such a thing. |
|||
|
|
https://eccprd.isupplier.honeywell.com/OA_HTML/AppsLocalLogin.jsp?username=Test01and it appeared to work FYI – Quintin Robinson Feb 2 '10 at 19:54