Control the content in printing
Control the content in printing
I got a website (using asp.net) like below:
<asp:Content>
[Header]
<asp:Content />
<asp:Content>
[some inputbox]
[button]
[content]
<asp:Content />
Is there any way for me to print the content only(using the print function default in browser)?
Like setting some attribute for the tags?
EDIT:
Some addition for the solution from Arsalan Hussain:
I add the style tag below the asp:content tag
<asp:Content>
<style>
@media print
.no-print
display: none;
</style>
</asp:Content>
And use a tag to cover the part I don't want to print:
<span class="no-print">
"Content"
</span>
1 Answer
1
You can use CSS to achieve this. Assign a CSS class that you want to display or vise versa. And use CSS Media Queries
@media print
…
for example
<asp:Content>
[Header class="no-print"]
<asp:Content />
<asp:Content>
[some inputbox class="no-print"]
[button class="no-print"]
[content]
<asp:Content />
@media print
.no-printdisplay:none;
and the time of printing, this css will be applied to the elements and they will not be displayed.
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
It works great for me =D Thanks
– Andrew Chan
Sep 3 at 8:17