html加样式转为word横向显示,c# – 生成word文档并使用html设置方向横向

news/2024/11/7 22:49:13/

我尝试使用以下代码生成word文档:

HttpContext.Current.Response.Clear();

HttpContext.Current.Response.Charset = "";

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

HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;

filename=" + DateTime.Now + ".doc");

var strHTMLContent = new StringBuilder();

strHTMLContent.Append(

"

Document Heading

");

strHTMLContent.Append("
");

strHTMLContent.Append("

// Row with Column headers

strHTMLContent.Append("

");

strHTMLContent.Append("

Column1

");

strHTMLContent.Append("

Column2

");

strHTMLContent.Append("

Column 3

");

strHTMLContent.Append("

");

// First Row Data

strHTMLContent.Append("

");

strHTMLContent.Append(

"

");

strHTMLContent.Append(

"

b");

strHTMLContent.Append(

"

c");

strHTMLContent.Append("

");

// Second Row Data

strHTMLContent.Append("

");

strHTMLContent.Append(

"

d");

strHTMLContent.Append(

"

e");

strHTMLContent.Append(

"

f");

strHTMLContent.Append("

");

strHTMLContent.Append("

");

strHTMLContent.Append("
");

strHTMLContent.Append(

"

Note : This is a dynamically

generated word document

");

HttpContext.Current.Response.Write(strHTMLContent);

// HttpContext.Current.Response.BinaryWrite(strHTMLContent);

HttpContext.Current.Response.End();

HttpContext.Current.Response.Flush();

它工作正常,但我想使它成为横向,并在打印布局中导致它出现在Web布局中

有谁能够帮我?


http://www.ppmy.cn/news/731969.html

相关文章

speed2000软件学习及C++学习

只有虚函数才能被覆盖&#xff1b; #include #include using namespace std; void process(int& i) { std::cout<<i<<" is lvalue"<<endl; } void process(int&& i) { std::cout<<i<<" is rvalue"<<e…

iQOO5G手机卡槽公布

华为、中兴、一加、OPPO、vivo各自的5G手机相继拿到了3C强制认证&#xff0c;小米的也在路上&#xff0c;5G手机真的越来越近了。 iQOO5G手机卡槽公布iQOO5G手机卡槽公布 今天&#xff0c;vivo iQOO还公布了其5G手机所用的卡槽样式&#xff0c;可以看到采用了双卡设计&#x…

Android上如何判断手机更换SIM卡?

1.getLine1Number() 一般的检测本机用的是getLine1Number()的方法&#xff0c;可惜的是&#xff0c;设备以及运营商为了安全考虑&#xff0c;大部分真机是不会让你获取到手机号的. 2.IMSI标识 sim卡的IMSI标识 http://www.baike.com/wiki/imsi 3.ICCID 它的全称是Inte…

VUE插槽/插槽传参

父组件 <template><Son> <template slot-scope"scope"> //scope 所有数据{{scope.data}} //传传传传传</template><template slot"slots" slot-scope"scope"> //具名插槽{{scope.msg}} //参参参参参</temp…

手机丢了不可怕,手机卡丢了才最可怕!

最近葫芦弟身边几个小伙伴手机丢了&#xff0c;有的还是新手机呢&#xff0c;捂在手里还没热乎呢&#xff0c;个个是心疼的不行不行的&#xff01; 葫芦弟听说后其实想对他们说&#xff0c;手机丢了心疼手机&#xff0c;还有担心自己的个人资料信息会被泄露这些还都是次要的。 …

vue slot插槽传值,插槽嵌套传值报错Converting circular structure to JSON解决

插槽之间传值用到了slot-scope&#xff08;作用域插槽&#xff09; 子组件<slot name"menuBtn" :data"{name:zj}"></slot> 父组件 <div slot"menuBtn" slot-scope"scope"><span>{{scope.data.name}}</s…

张量Tucker分解

Tucker分解是一种高阶的主成分分析&#xff0c;它将一个张量表示成一个核心&#xff08;core&#xff09;张量沿每一个mode乘上一个矩阵。HOSVD分解又称作Tucker分解。由Tucker在1936年提出。HOSVD全名为high order SVD&#xff0c;即高阶的SVD。所以我们要先了解一下SVD原理&a…

vue插槽传值(多个插槽和单个插槽)

多个插槽&#xff1a; 子组件&#xff1a; <template><div><slot></slot><slot name"secondslot" :text"postText" text2"哈哈哈哈哈2"></slot></div> </template> 使用&#xff1a; <r…