How to create an Email Id using c#..?
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#..?
You can use WebBrowser
control. Parse needed controls from html text, and then programitically input text
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.
精彩评论