[HowTo] Convert a Text Box to a Frame in Word
http://www.fanhow.com/knowhow:Convert_a_Text_Box_to_a_Frame_in_Word_32373524 http://www.extendoffice.com/documents/word/932-word-convert-text-box-to-frame.html
[HowTo] Write Excel file to web page (aspx)
Writing an Excel file to the response object in ASP.NET is quite easy… This piece of code works with most of the files type… string YourFilename = “test.xlsx”; string path = Server.MapPath(YourPath + YourFilename); Response.ClearContent(); Response.AddHeader(“content-disposition”, “attachement;filename=” + YourFilename); // Ouvrir avec MSExcel Response.ContentType = “application/ms-excel”; // MSWord // Response.ContentType = “application/msword”; // Text // […]