Reputation: 552
Hi I want to create a program that helps me to create an email id.I mean it fills the other details and I will only enter the captcha.. Is there any way to do it using c#..?
Upvotes: 0
Views: 397
Reputation: 6347
You will have to write HTML parser anyway or use existing one (I suppose there are a lot of open source projects). You can use WebBrowser as Stecya said, but I will recomend to use HttpWebRequest
and HttpWebResponse
bacause of such approach would be faster.
Upvotes: 0
Reputation: 23266
You can use WebBrowser
control. Parse needed controls from html text, and then programitically input text
Upvotes: 1