0

我的 ASP.Net 页面中有一个申请表。我想在用户单击按钮时打印此页面。但不幸的是,那个触发按钮印在了纸上。我怎样才能摆脱那个按钮?

4

1 回答 1

0

打印表单时使用打印 css 并使用此样式表隐藏按钮。

<link rel="stylesheet" href="URL to your print.css" type="text/css" media="print" />

在你的 aspx 中:

<asp:Button id="btn" runat="server" CssClass="button-c"/>

在 print.css 文件中添加

.button-c {display:none !important;}
于 2013-03-07T05:45:50.040 回答