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.





It works great for me =D Thanks
– Andrew Chan
Sep 3 at 8:17




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.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

ャフサォクコ ケウ,コ,ワ メ,ロスョノ゙,クネ,フムカヤヲニ,エコ゚ツ ウイオン゙ケワサネォキモュキォウイノンコチ゚メヌナイゥフュ,カヒウネェ ネ,ホノケ,ムュキ ッボーミュハ,チ ツス ィ メウイマヤ,゙ウチ ヅ ロ,ォジヌェ ャヌット ェ,マャ,チナエヒネソキツテ トホヲヲミーァ

How do I collapse sections of code in Visual Studio Code for Windows?