Programming

(C#) get http web page

steloflute 2012. 10. 22. 23:30

http://stackoverflow.com/questions/4510212/how-i-can-get-web-pages-content-and-save-it-into-the-string-variable

 

You can use the WebClient

WebClient client = new WebClient(); 
string downloadString = client.DownloadString(http://www.gooogle.com);