邮件使用c#发送,但数据必须从其他html页面获取

时间:2012-03-24 07:43:37

标签: c# html email send

有人能告诉我如何在c#模块中获取html页面的数据。 我想从html页面发送直接邮件到客户端。 因为我必须从html获取数据到c#模块..并在服务器上写一个c#mail send代码..这怎么可能..plz帮助我

1 个答案:

答案 0 :(得分:1)

您可以使用WebClient来执行此操作。

WebClient - 类包含函数DownloadString,它将指定为字符串的Uri下载。

WebClient wc = new WebClient();
string data = wc.DownloadString("http://stackoverflow.com");