在生成的HTML .doc中插入分页符

前端之家收集整理的这篇文章主要介绍了在生成的HTML .doc中插入分页符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_301_0@
我目前正在使用asp.NET生成一个.doc文件作为html.

我希望在页面中插入分页符,但不知道如何.

我尝试过使用css style =’page-break-before:always’但它什么也没做.

这是分配给按钮单击事件的代码

HttpContext.Current.Response.Clear();
    HttpContext.Current.Response.Charset ="";

    HttpContext.Current.Response.ContentType ="application/msword";

    string strFileName = "GenerateDocument"+ ".doc";
    HttpContext.Current.Response.AddHeader("Content-Disposition","inline;filename=" + strFileName);

    StringBuilder strHTMLContent = new StringBuilder();

    strHTMLContent.Append("<p align='Center'>Content Before Page Break</p>".ToString());

    strHTMLContent.Append("<br><br>".ToString());
    strHTMLContent.Append("<p class='pageBreak' style='mso-special-character:line-break;'>meh</p>".ToString());

    strHTMLContent.Append("<br><br>".ToString()); 
    strHTMLContent.Append("<p align='Center'>Content After Page Break</p>".ToString());

    HttpContext.Current.Response.Write(strHTMLContent);
    HttpContext.Current.Response.End();
    HttpContext.Current.Response.Flush();

解决方法

我会改用Gios.Word .NET库.使用表和分页符等创建RTF兼容的word文件要简单得多.

我首先尝试创建基于XML的Doc文件,发现Gios更好:

这是一篇关于它的文章

http://www.codeproject.com/KB/string/gioswordnetlibrary.aspx

http://www.codeproject.com/script/Articles/ViewDownloads.aspx?aid=11252

原文链接:https://www.f2er.com/html/226140.html

猜你在找的HTML相关文章