简体   繁体   中英

C# Getting info from a web id

I want to get text from a website, but from a certain element, does any one have any clues?

From example the code I have to make text form a text box to a website textbox is

webBrowser1.Document
           .GetElementById("MySchool_login")
           .SetAttribute("value", textBox1.Text);

What you want to do is called as screen scrapping . You can use Watin for this. Or else you can use WebResponse and WebRequest to achieve this also.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM