Я пытаюсь экспортировать содержимое HTML-страницы в Word.
Моя страница отображения Html:
- Какой твой любимый цвет?
NA
- Список трех лучших школ?
один национальный
два разработчика
три PS
И кнопка для события клика. Событие нажатия кнопки откроет MS word и вставит содержимое страницы в слово.
Слово page содержит свойство table страницы html design. Это происходит только в Word 2003. Но в Word 2007 текстовый документ содержит текст без табличного свойства. Как я могу удалить это свойство таблицы в Word 2003.
Я не могу добавить снимки. Иначе я разъясню тебе.
Я разрабатываю веб-страницу с помощью aspx. Я экспортирую содержимое веб-страницы с помощью следующего кода.
protected void Button1_Click(object sender, EventArgs e)
{
Response.ContentEncoding = System.Text.Encoding.UTF7;
System.Text.StringBuilder SB = new System.Text.StringBuilder();
System.IO.StringWriter SW = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlTW = new System.Web.UI.HtmlTextWriter(SW);
tbl.RenderControl(htmlTW);
string strBody = "<html>" +
"<body>" + "<div><b>" + htmlTW.InnerWriter.ToString() + "</b></div>" +
"</body>" +
"</html>";
Response.AppendHeader("Content-Type", "application/msword");
Response.AppendHeader("Content-disposition", "attachment; filename=" + fileName);
Response.ContentEncoding = System.Text.Encoding.UTF7;
string fileName1 = "C://Temp/Excel" + DateTime.Now.Millisecond.ToString();
BinaryWriter writer = new BinaryWriter(File.Open(fileName1, FileMode.Create));
writer.Write(strBody);
writer.Close();
FileStream fs = new FileStream(fileName1, FileMode.Open, FileAccess.Read);
byte[] renderedBytes;
// Create a byte array of file stream length
renderedBytes = new byte[fs.Length];
//Read block of bytes from stream into the byte array
fs.Read(renderedBytes, 0, System.Convert.ToInt32(fs.Length));
//Close the File Stream
fs.Close();
FileInfo TheFile = new FileInfo(fileName1);
if (TheFile.Exists)
{
File.Delete(fileName1);
}
Response.BinaryWrite(renderedBytes);
Response.Flush();
Response.End();
}