HTML String to Word with Header and Footer (ASP.NET and VB.NET)
am 01.04.2008 08:52:26 von sasikumar.gunasekaranI 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 = "
hello
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.