Click here to Skip to main content
Click here to Skip to main content

Dynamically generate a MS Word document using HTML & CSS

By , 23 Jun 2006
 

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:

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

About the Author

'Anil' Radhakrishna
Web Developer
India India
Member
'Anil' Radhakrishna is a seasoned developer 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. You can find some of his unusual code samples & snippets at his Code Gallery. He loves building mash-ups using public Web APIs.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionHow to make its default save type is .docmemberjeevanjoshi26 Apr '13 - 1:57 
AnswerRe: How to make its default save type is .docmemberjeevanjoshi28 Apr '13 - 22:38 
GeneralMy vote of 5memberTejas Vaishnav31 Oct '12 - 20:39 
QuestionFor Header and footer with imagememberprateekfgiet17 Oct '12 - 4:50 
GeneralMy vote of 5memberhadi552615 Jul '12 - 19:15 
GeneralMy vote of 5membergiorgio19514 Apr '12 - 3:43 
QuestionFor DOCXmemberJohnny Glenn13 Mar '12 - 2:21 
QuestionDocentric - Another COM free solutionmemberJure.L28 Dec '11 - 23:10 
QuestionMarginsmemberMember 850067719 Dec '11 - 2:06 
QuestionAdapt ASP code to PHPmemberPeter Trumbull9 Dec '11 - 2:58 
AnswerRe: Adapt ASP code to PHPmember'Anil' Radhakrishna9 Dec '11 - 3:31 
GeneralMy vote of 5memberwalanga30 Sep '11 - 19:29 
QuestionDatagridmemberMember 275668529 Sep '11 - 2:10 
GeneralMy vote of 5memberAby Watson24 Feb '11 - 22:43 
GeneralMy vote of 2membersanthu12smart21 Dec '10 - 22:55 
QuestionHow do I save this generated word doc?memberMember 747702829 Sep '10 - 3:07 
AnswerRe: How do I save this generated word doc?member'Anil' Radhakrishna31 Jan '11 - 16:00 
GeneralHeader and Footer Duplicatingmemberkimberly.johnson335 Mar '10 - 9:49 
GeneralRe: Header and Footer Duplicatingmemberbborton13 Jul '10 - 10:54 
GeneralRe: Header and Footer Duplicatingmember'Anil' Radhakrishna1 Sep '10 - 6:52 
GeneralRe: Header and Footer Duplicatingmemberbborton1 Sep '10 - 6:56 
GeneralPlease help to put Header and FootermemberHimanshu_prem5 Jan '10 - 0:12 
QuestionHow can we close the browser window once download is completed??memberNabin Kumar Jha6 Nov '09 - 6:14 
GeneralUnable to runmembercdjohn13 Sep '09 - 22:26 
QuestionLarge document, takes a very long time to open...any advice?memberautumnEND6 May '09 - 3:56 
AnswerRe: Large document, takes a very long time to open...any advice?memberkayaker41126 May '09 - 8:48 
GeneralRe: Large document, takes a very long time to open...any advice?member'Anil' Radhakrishna26 May '09 - 15:25 
GeneralDuplicate header / footermemberSam Horne25 Mar '09 - 18:12 
GeneralEmbedding USERINITIALS into HTMLmembercwhite3075530 Dec '08 - 3:06 
GeneralRe: Embedding USERINITIALS into HTMLmember'Anil' Radhakrishna24 Mar '09 - 0:08 
GeneralHeader Footer appears twicemembermikeb5522 Aug '08 - 9:04 
GeneralRe: Header Footer appears twicememberSam Horne25 Mar '09 - 18:11 
GeneralRe: Header Footer appears twicememberDLonghofer29 Jun '10 - 7:45 
QuestionHow can be the images also be incorporated in the word document ?membergaurav20075 Jun '08 - 20:18 
AnswerRe: How can be the images also be incorporated in the word document ?memberTerry Meritt15 Oct '08 - 10:16 
GeneralRe: How can be the images also be incorporated in the word document ?memberMember 457041229 Oct '08 - 23:08 
GeneralRe: How can be the images also be incorporated in the word document ?memberTerry Meritt13 Apr '09 - 6:30 
GeneralRe: How can be the images also be incorporated in the word document ?memberlakpa13 Apr '09 - 0:56 
GeneralSom problem with different charactersmemberb3rra7 May '08 - 3:47 
GeneralRe: Som problem with different charactersmember'Anil' Radhakrishna7 May '08 - 4:18 
GeneralRe: Som problem with different charactersmemberb3rra7 May '08 - 4:39 
GeneralRe: Som problem with different charactersmemberRecep GUVEN2 Feb '11 - 9:51 
GeneralYou Rock.memberMember 430495826 Jan '08 - 7:17 
QuestionSaving the filememberMember 322823913 Dec '07 - 18:17 
QuestionHow to save the generated documentmemberMember 322823913 Dec '07 - 18:16 
GeneralHeader and footer after dynamic generation of word docmemberraliravibabu15 Aug '07 - 19:19 
QuestionRe: Header and footer after dynamic generation of word docmemberdrkivel17 Oct '07 - 16:59 
QuestionWhat about security rights?memberDmitry Dzygin26 Jun '07 - 3:34 
GeneralPutting Imagemembersatejprabhu8 Jun '07 - 20:33 
QuestionHow to get the lis of heading without Table of contentsmemberLokanatha Reddy1 Apr '07 - 22:45 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 23 Jun 2006
Article Copyright 2004 by 'Anil' Radhakrishna
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid