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.

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?

share|improve this question
I'm confused, this is a jsp page but your question is tagged with C#? – AaronLS Feb 2 '10 at 19:48
I want to log on to this site with my companys user and password from a winforms application – Luiscencio Feb 2 '10 at 19:50
I can't remember what they are of the top of my head (possibly the field names) but the oracle login page will pre-populate the fields if you append the name/values in a querystring to the url. – Quintin Robinson Feb 2 '10 at 19:54
1  
I did try this https://eccprd.isupplier.honeywell.com/OA_HTML/AppsLocalLogin.jsp?username=Test‌​01 and it appeared to work FYI – Quintin Robinson Feb 2 '10 at 19:54
@quintin: thanks for the tip, I'll try it out. – Luiscencio Feb 2 '10 at 19:55
show 2 more comments

3 Answers

up vote 2 down vote accepted

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.

share|improve this answer
did not think the solution was this simple – Luiscencio Feb 4 '10 at 19:01
do you know how to perform a click over an element? – Luiscencio Feb 4 '10 at 19:06

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.

share|improve this answer
Can you please give some instructions on this workaround? – Luiscencio Feb 2 '10 at 22:00

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.