Click here to Skip to main content
Licence 
First Posted 14 Jun 2004
Views 242,340
Downloads 3,293
Bookmarked 66 times

Convert HTML to MHTML using ASP.NET

By | 14 Jun 2004 | Article
An article on how to convert a html document with images to a mhtml document

Introduction

Ever wanted to make a report out of an html document and have it sent to the client for offline use in Word or Excel? An RFC - compliant Multipart MIME Message (mhtml web archive) is one single file containing all related material such as linked documents and images serialized to their Base64 inline encoding representations. There is no native support for creating mhtml archives in .NET but thanks to the Windows CDO library this is easy accomplished.

The code

The projects contains 3 classes; mht, mhtImage and mhtImageCollection. The mht class contains the conversion functions like convertWebControlToMHTString which takes a webControl and a collection of images and returns a string representation of the created mht archive. Use this function when the converting webControl is dependent on user specific Session and Application variables for rendering or when you use dynamically created images.

Public Function convertWebControlToMHTString(ByVal control As WebControl, _
  ByVal MHTimages As mhtImageCollection) As String
  'Render WebControl to html
  Dim html As String = getHtml(control)

  'If WebControl has images, make the html Word compatible
  If Not MHTimages Is Nothing Then
    fixImageLocation(html, MHTimages)
  End If

  Dim msg As New CDO.MessageClass
  Dim stm As ADODB.Stream = Nothing
  Dim MS As System.IO.MemoryStream = Nothing

  Dim iBp As CDO.IBodyPart

  'Make a multipart mhtml document
  Dim mainBody As CDO.IBodyPart
  mainBody = msg
  mainBody.ContentMediaType = "multipart/related"

  'Make the html part of the document
  iBp = mainBody.AddBodyPart()
  iBp.ContentMediaType = "text/html"
  iBp.ContentTransferEncoding = "quoted-printable"
  stm = iBp.GetDecodedContentStream
  stm.WriteText(html)
  stm.Flush()

  'Make the image parts of the document
  If Not MHTimages Is Nothing Then
    Dim oMhtImage As mhtImage
    For Each oMhtImage In MHTimages
      iBp = mainBody.AddBodyPart()
      With iBp
        .ContentMediaType = "image/" + _
 oMhtImage.ImageFormat.ToString().ToLower()
        .ContentTransferEncoding = "base64"

        'ContentLocation must be the same as in the 
        'html part to make them linked
        .Fields.Append("urn:schemas:mailheader:content-location", _
    DataTypeEnum.adBSTR, , , oMhtImage.ContentLocation)
        .Fields.Update()
        .Fields.Refresh()
      End With

      Try
        MS = New System.IO.MemoryStream
        oMhtImage.Image.Save(MS, oMhtImage.ImageFormat)
        Dim bytearray As Byte() = MS.ToArray()
        stm = iBp.GetDecodedContentStream
        stm.Write(bytearray)
        stm.Flush()
      Finally
        MS.Close()
        stm.Close()
      End Try
    Next
  End If

  stm = mainBody.GetStream()
  Return stm.ReadText(stm.Size)
End Function
      

The convertWebPageToMHTString function converts an html document from a specific URL to a mht archive, all images included. Use this function for public html documents not dependent on user specific Session and Application variables.

Public Function convertWebPageToMHTString(ByVal url As String) As String
    Dim msg As New CDO.MessageClass
    Dim stm As ADODB.Stream = Nothing

    Try
        msg.MimeFormatted = True
        msg.CreateMHTMLBody(url, CDO.CdoMHTMLFlags.cdoSuppressNone, "", "")
        stm = msg.GetStream()
        Return stm.ReadText(stm.Size)
    Finally
        stm.Close()
    End Try
End Function
    

The fixImageLocation appends the string "http://" at the beginning of each ContentLocation if not already there, for Word compliance

Private Sub fixImageLocation( _
      ByRef html As String, ByRef MHTimages As mhtImageCollection)
    Dim curContentLocation As String
    Dim curIndex As Integer
    Dim oMhtImage As mhtImage
    For Each oMhtImage In MHTimages
        curContentLocation = oMhtImage.ContentLocation
        If curContentLocation.IndexOf(":") = -1 Then
            curIndex = html.IndexOf(curContentLocation)
            While curIndex <> -1
                html = html.Insert(curIndex, "http://")
                curIndex = html.IndexOf(curContentLocation, curIndex + _
   curContentLocation.Length)
            End While
            oMhtImage.ContentLocation = "http://" + curContentLocation
        End If
    Next
End Sub
    

The mhtImage class contains image information. Property Image contains the actual image. Property ContentLocation contains the path to the image, must be exactly the same as the source for the image in the html part. Property ImageFormat contains the image format (jpg, gif, bmp...)

The mhtImageCollection class contains a collection of mhtImages.

Using the code

Example on how to make a mht archive from a Panel webControl containing one image.

Dim oMhtCol As New mhtImageCollection
oMhtCol.add(New mhtImage(System.Drawing.Image.FromFile( _
  Server.MapPath("/mhtml/images/myComputer.jpg")), _
  "images/myComputer.jpg", System.Drawing.Imaging.ImageFormat.Jpeg))
sendMHTFile(ConvertWebControlToMHTString(Panel1, oMhtCol), "myFirstMht.mht")
    

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Partenon

Web Developer

Sweden Sweden

Member

Software developer

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalhelp!! Pinmemberbishwajeet20:38 3 Oct '08  
GeneralCDO.MessageClass CreateMHTMLBody Random Format Error Pinmemberxontherocks4:42 29 Nov '07  
QuestionCreateMHTMLBody causes error PinmemberNancy Forbes4:01 10 Oct '07  
GeneralNeed help converting html to mhtml PinmemberIneedMIMEmailsNOW23:06 13 Sep '07  
GeneralHTML To DOC using MHT Pinmembergansci19:46 31 May '07  
GeneralLibrary Pinmemberyann_lh10:23 11 Apr '07  
GeneralIs there any limit for the Mht file created. Pinmembersunil197820:08 10 Jul '06  
GeneralGetting Exception Pinmembersunil19780:52 10 Jul '06  
QuestionHow can I Convert MHTML to HTML ? Pinmemberxfary16:04 3 Jul '06  
AnswerRe: How can I Convert MHTML to HTML ? PinmemberRichard Beacroft0:56 16 Apr '07  
QuestionAbout the convertWebPageToMHTString(...) method Pinmemberjasper1688818:24 14 Jun '06  
GeneralRe: About the convertWebPageToMHTString(...) method Pinmemberjasper1688819:19 14 Jun '06  
Questionconvert an asp.net generated web page in memor? PinmemberJTW212:11 26 May '06  
AnswerRe: convert an asp.net generated web page in memor? PinmemberPartenon7:17 27 May '06  
GeneralRe: convert an asp.net generated web page in memor? PinmemberJTW27:45 27 May '06  
GeneralRe: convert an asp.net generated web page in memor? PinmemberPartenon7:49 27 May '06  
GeneralRe: convert an asp.net generated web page in memor? PinmemberJTW21:00 3 Jun '06  
GeneralNeed help to convert HTML to MHTL Pinmemberhuanngo20:04 21 Dec '05  
GeneralRe: Need help to convert HTML to MHTL Pinmemberlucian_davitoiu2:38 18 Apr '06  
GeneralRe: Need help to convert HTML to MHTL Pinmemberhuanngo7:05 18 Apr '06  
QuestionCode is directly download of MHTM file PinmemberNirdesh Puri23:04 5 Dec '05  
QuestionAny Limit of MHTML file size? PinmemberNirdesh Puri20:16 23 Nov '05  
QuestionHow to Refresh CDOSYS object? PinsussRadhika Datla15:50 21 Sep '05  
AnswerRe: How to Refresh CDOSYS object? PinsussAnonymous20:43 21 Sep '05  
GeneralRe: How to Refresh CDOSYS object? PinsussRadhika Datla21:12 21 Sep '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 15 Jun 2004
Article Copyright 2004 by Partenon
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid