Export div contains image to word

Hi,

I am exporting a page to word.Below code works but it does not export images to word.haw can i export with images?Following is the code i am using


btnExport_Click(object sender, EventArgs e)
{
Response.AddHeader("content-disposition", "attachment;filename=FileName.doc");
Response.Charset = "";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "application/vnd.ms-word";

System.IO.StringWriter stringWrite = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);

print_All.RenderControl(htmlWrite);
Response.Write(stringWrite.ToString());
Response.End();
}


Thanks
karuna

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories