htm格式转换成mht

来源:互联网 发布:武汉理工大学网络大专 编辑:程序博客网 时间:2024/05/21 18:35
private void ProduceMhtFile(string URL,string FileName) { 
CDO.Message msg=new CDO.MessageClass(); 
msg.CreateMHTMLBody(URL,CDO.CdoMHTMLFlags.cdoSuppressAll,"","");
ADODB.Stream sw=msg.GetStream(); 
string urlPath = HttpContext.Current.Request.ApplicationPath + "/Temp/"; 
//虚拟目录 
string physicPath = HttpContext.Current.Server.MapPath(urlPath); 
//物理地址 
string strFileName=Guid.NewGuid()+".mht"; 
sw.SaveToFile(physicPath+strFileName,ADODB.SaveOptionsEnum.adSaveCreateOverWrite); 
HttpContext.Current.Response.Clear(); 
HttpContext.Current.Response.ContentType = "mht"; 
HttpContext.Current.Response.WriteFile(urlPath+strFileName); 
HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename="+HttpUtility.UrlEncode(FileName)+""); 
HttpContext.Current.Response.Charset ="GB2312"; 
HttpContext.Current.Response.ContentEncoding =System.Text.Encoding.GetEncoding("GB2312"); 
HttpContext.Current.Response.ContentType ="text/mhtml";
//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msword 
HttpContext.Current.Response.Flush(); 
System.IO.File.Delete(physicPath+strFileName);
//删除临时文件 
HttpContext.Current.Response.End(); 
} 


 

原创粉丝点击