PDA

View Full Version : تبدیل html به word در c#



resident
دوشنبه 04 آبان 1394, 13:41 عصر
سلام.
من تو برنامم یه متنی رو از ادیتور html ای می گیرم. میخوام این متن رو تبدیلش کنم به word (با C#)
چطور میشه این کار رو انجام داد؟

malloc
دوشنبه 04 آبان 1394, 15:31 عصر
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition",
"attachment;filename=DataTable.doc");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-word ";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
Response.Output.Write("Html Code ");
Response.Flush();
Response.End();