HTML String to Word with Header and Footer (ASP.NET and VB.NET)

I have to create a MS - Word document with header and footer from a
HTML string. I am using the below code.

Dim strHTML As String = "<html><body><br><b>hello</b><br></body></
html>"
Response.Cache.SetExpires(DateTime.Now.AddSeconds(1))
Response.Clear()
Response.AppendHeader("content-disposition",
"attachment;filename=FileName.doc")
Response.Charset = ""
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.ContentType = "application/vnd.ms-word"
Me.EnableViewState = False
Response.Write("\r\n")
Response.Write(HttpUtility.HtmlDecode(strHTML))
Response.End()

I want to build the HTML with header and footer which will be later
converted into a MS Word with Header and Footer also if the pages got
increased.

Please help me out.
sasikumar.gunasekaran [ Di, 01 April 2008 08:51 ] [ ID #1932627 ]
Microsoft » microsoft.public.dotnet.framework.aspnet » HTML String to Word with Header and Footer (ASP.NET and VB.NET)

Vorheriges Thema: How to have .NET framework 3.5 on web server?
Nächstes Thema: Re: Error Message could not find a non-generic method