Click here to Skip to main content
15,879,490 members
Articles / Programming Languages / Visual Basic
Article

Dynamically generate a MS Word document using HTML & CSS

Rate me:
Please Sign up or sign in to vote.
4.63/5 (71 votes)
23 Jun 20062 min read 756.5K   148   99
A lightweight method to generate a Word document without using any components and show it in Print Layout.

Introduction

This article explains how easy it is to generate reports dynamically in a visually rich and appealing format like MS-Word (2000 and above) without using any components, and shows a little workaround for a quirk. It also talks about the connection between Office, XML, and HTML.

Documents can be converted from Word to HTML (File->Save As) and vice versa! To create a dynamic Word report, you will need to generate regular HTML text and apply the required formatting through CSS. You can even incorporate stuff from the database into the Word report. By playing around with MIME settings, you can force the HTML content to be downloaded as a Word .doc file.

Here comes the code

When you save the downloaded Word document and open it, it opens in the Web Layout format. Now, wouldn't it be neater if it opened in the default Print Layout? Well, all you need to do is attach the style properties. Here comes the code:

VB
Public Sub Page_Load(sender as Object, e as EventArgs)

    'build the content for the dynamic Word document
    'in HTML alongwith some Office specific style properties. 
    Dim strBody As New System.Text.StringBuilder("")

    strBody.Append("<html " & _ 
            "xmlns:o='urn:schemas-microsoft-com:office:office' " & _
            "xmlns:w='urn:schemas-microsoft-com:office:word'" & _ 
            "xmlns='http://www.w3.org/TR/REC-html40'>" & _
            "<head><title>Time</title>") 

    'The setting specifies document's view after it is downloaded as Print
    'instead of the default Web Layout
    strBody.Append("<!--[if gte mso 9]>" & _
                             "<xml>" & _ 
                             "<w:WordDocument>" & _
                             "<w:View>Print</w:View>" & _
                             "<w:Zoom>90</w:Zoom>" & _ 
                             "<w:DoNotOptimizeForBrowser/>" & _
                             "</w:WordDocument>" & _
                             "</xml>" & _ 
                             "<![endif]-->")

    strBody.Append("<style>" & _
                            "<!-- /* Style Definitions */" & _
                            "@page Section1" & _
                            "   {size:8.5in 11.0in; " & _
                            "   margin:1.0in 1.25in 1.0in 1.25in ; " & _
                            "   mso-header-margin:.5in; " & _
                            "   mso-footer-margin:.5in; mso-paper-source:0;}" & _
                            " div.Section1" & _
                            "   {page:Section1;}" & _
                            "-->" & _
                           "</style></head>") 

    strBody.Append("<body lang=EN-US style='tab-interval:.5in'>" & _
                            "<div class=Section1>" & _
                            "<h1>Time and tide wait for none</h1>" & _ 
                            "<p style='color:red'><I>" & _
                            DateTime.Now & "</I></p>" & _
                            "</div></body></html>") 

    'Force this content to be downloaded 
    'as a Word document with the name of your choice
    Response.AppendHeader("Content-Type", "application/msword")
    Response.AppendHeader ("Content-disposition", _
                           "attachment; filename=myword.doc")
    Response.Write(strBody)
End Sub

Click here to try it out.

If you wish to dig deeper into other style properties that you would like to implement, create the Word document in the required fashion, save the Word document as an HTML file, and view the source for the style settings. Wonderful, right?

This article just touches the tip of the iceberg. There are other good resources too. Microsoft Office 2000 supports Hypertext Markup Language (HTML) as a native file format. To get a low-down on this technique, you can download the Microsoft Office HTML and XML Reference that describes the files saved by Excel, PowerPoint, and Word when a document, presentation, workbook, or worksheet is saved as a Web page. You can play around with the style settings to create different configurable options for the user to view a downloadable Word document.

MS Word has better support now for HTML. You can even use it as an HTML editor. The Office HTML Filter is a handy tool you can use to remove Office-specific markup tags embedded in Office 2000 documents saved as HTML to give you really lean and mean HTML code. Even the most basic Windows users are well conversant with Word. Generating HTML files could not have got easier than this, and folks new to HTML do not have to get entangled in tags.

While on the topic, developers can checkout Peter Bromberg’s article: Build a C# Multipart MIME Encoding Library to Save Web Pages in "MHT" Format, on embedding images into a Word document.

Conclusion

This article tip shows a lightweight method to generate a Word document without using any components, and show it in Print Layout. If you have any nifty Office tips related to HTML and XML, please do share.

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


Written By
Architect
India India
'Anil' Radhakrishna is a seasoned architect who enjoys working with Microsoft tools & technologies. He blogs quite regularly about his little discoveries and technical experiments on his blog called Tech Tips, Tricks & Trivia. He loves building mash-ups using public Web APIs.

Comments and Discussions

 
QuestionRe: Header and footer after dynamic generation of word doc Pin
drkivel17-Oct-07 16:59
drkivel17-Oct-07 16:59 
QuestionWhat about security rights? Pin
Dmitry Dzygin26-Jun-07 3:34
Dmitry Dzygin26-Jun-07 3:34 
GeneralPutting Image Pin
satejprabhu8-Jun-07 20:33
satejprabhu8-Jun-07 20:33 
QuestionHow to get the lis of heading without Table of contents Pin
Lokanatha Reddy1-Apr-07 22:45
Lokanatha Reddy1-Apr-07 22:45 
AnswerRe: How to get the lis of heading without Table of contents Pin
'Anil' Radhakrishna10-Apr-07 23:36
'Anil' Radhakrishna10-Apr-07 23:36 
QuestionWhat am I missing..........Leigh Pin
LeighG20-Feb-07 9:02
LeighG20-Feb-07 9:02 
AnswerRe: What am I missing..........Leigh Pin
'Anil' Radhakrishna20-Feb-07 18:16
'Anil' Radhakrishna20-Feb-07 18:16 
QuestionAdding header and footer Pin
Member 266795923-Jan-07 0:16
Member 266795923-Jan-07 0:16 
AnswerRe: Adding header and footer Pin
'Anil' Radhakrishna15-Feb-07 18:48
'Anil' Radhakrishna15-Feb-07 18:48 
GeneralHeader, footer and foot note Pin
Member 266795922-Jan-07 21:23
Member 266795922-Jan-07 21:23 
QuestionNewbe needs help Pin
sstark026-Sep-06 7:54
sstark026-Sep-06 7:54 
Questionpage breaks? Pin
walkerla14-Sep-06 7:22
walkerla14-Sep-06 7:22 
AnswerRe: page breaks? Pin
walkerla14-Sep-06 12:51
walkerla14-Sep-06 12:51 
GeneralRe: page breaks? Pin
Rolfpants19-Sep-06 6:04
Rolfpants19-Sep-06 6:04 
AnswerRe: page breaks? Pin
Rolfpants20-Sep-06 0:01
Rolfpants20-Sep-06 0:01 
GeneralRe: page breaks? Pin
walkerla20-Sep-06 15:54
walkerla20-Sep-06 15:54 
GeneralRe: page breaks? Pin
Saravanan Muthiah17-Dec-08 20:17
Saravanan Muthiah17-Dec-08 20:17 
QuestionHow can the data from Vb.Net pass to the Text Box in Microsoft Word? Pin
GeoffreyOng3-Sep-06 15:53
GeoffreyOng3-Sep-06 15:53 
AnswerMail merge Pin
'Anil' Radhakrishna3-Sep-06 23:15
'Anil' Radhakrishna3-Sep-06 23:15 
QuestionWhole page is output as word file Pin
Mewble6-Aug-06 23:44
Mewble6-Aug-06 23:44 
GeneralTHANK YOU>>> THANK YOU Pin
Damian Brown27-Jul-06 13:33
Damian Brown27-Jul-06 13:33 
GeneralA great big thank you Pin
winextra15-Jul-06 9:46
winextra15-Jul-06 9:46 
QuestionGetting an Error with Code Pin
EvaJen12-Jul-06 4:22
EvaJen12-Jul-06 4:22 
QuestionHow to open and save a Word doc programmatically in Browser Pin
sauravg284-Jul-06 19:37
sauravg284-Jul-06 19:37 
Questionhow to down load File on server by using Vb.net Pin
Nitesh Malviya1-Jul-06 1:04
Nitesh Malviya1-Jul-06 1:04 

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

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