Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 ASP.Net 页面中有一个申请表。我想在用户单击按钮时打印此页面。但不幸的是,那个触发按钮印在了纸上。我怎样才能摆脱那个按钮?
打印表单时使用打印 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;}