解决方案 »

  1.   

      string strDomainPath = HttpRuntime.AppDomainAppPath;
                   string strHtmlPath = strDomainPath + "index.htm";
                   string strUrl = "http://www.1.com/Index.aspx";
                   System.Net.WebRequest wReq = System.Net.WebRequest.Create(strUrl);
                   System.Net.WebResponse wResp = wReq.GetResponse();
                   System.IO.Stream respStream = wResp.GetResponseStream();
                   System.IO.StreamReader reader = new System.IO.StreamReader(respStream, System.Text.Encoding.UTF8);
                   string strHtml = reader.ReadToEnd();
    strHtml 为邮件内容
      

  2.   

    ASP.NET C# 网页邮件发送代码   http://jinxubin0317.blog.163.com/blog/static/56045079201046221071/ 希望这个能帮到你
      

  3.   

    以前也遇到过同样的问题,求解,
    页面中有通过ajax获取的数据库资料
    WebRequest 只能获取原始的HTML,并不能获取执行js后的页面html