Hi,
How to put a page breake in a word document handling in asp.net
Response.Clear()
Response.AddHeader("content-disposition", "attachment;filename=FileName.doc")
Response.Charset = ""
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.ContentType = "application/vnd.word"
Response.Write(strtable)
Here strtable is a string that return a documentwhich I want to wtite it to word page.Sometimes strtable return more than one document. I want to put a page break between two document.