תמונה תישאר גם בהמרת קובץ aspx לקובץ וורד

smira

New member
תמונה תישאר גם בהמרת קובץ aspx לקובץ וורד

שלום,
אני בונה אתר ב-c#
ובאתר אני ממירה את קובץ ה- aspx לקובץ וורד
אני צריכה שבקובץ וורד תישאר התמונה. איך מדביקים תמונה לקובץ וורד מקוד C#.
זה קוד ההמרה:
Response.ContentType = "application/word";

Response.AddHeader("content-disposition", "inline;filename=TestPage.doc");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
this.Page.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());

Response.Write(sw);
Response.End();
Response.Flush();

אשמח לעזרה מירה
 
למעלה