有人能告诉我如何在c#模块中获取html页面的数据。 我想从html页面发送直接邮件到客户端。 因为我必须从html获取数据到c#模块..并在服务器上写一个c#mail send代码..这怎么可能..plz帮助我
答案 0 :(得分:1)
您可以使用WebClient
来执行此操作。
WebClient
- 类包含函数DownloadString
,它将指定为字符串的Uri下载。
WebClient wc = new WebClient();
string data = wc.DownloadString("http://stackoverflow.com");