devxlogo

How to Save URL Contents to an MHTML Archive Format

When you save an HTML file with Internet Explorer, it saves the contents as a Multipurpose Internet Mail Extension HTML (MHTML) file, with an .mht extension. But you can easily accomplish the same result programmatically, using the CDO Message object. Here’s an example:

/// <summary>/// Saves the url to a Archive File (.mht)/// </summary>/// The URL./// The file path./// public static bool SaveWebPageToMHTFile( string url, string filePath){   try   {      CDO.Message msg = new CDO.MessageClass();      ADODB.Stream stm = null ;      msg.MimeFormatted =true;      msg.CreateMHTMLBody(url,CDO.CdoMHTMLFlags.cdoSuppressNone,          "" ,"" );      stm = msg.GetStream();      stm.SaveToFile(         filePath,ADODB.SaveOptionsEnum.adSaveCreateOverWrite);      msg=null;      stm.Close();      return true;   }   catch(Exception ex)   {      throw ex;      return false;   }}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.