Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to print my page accept the elements of masterpage. there is a user control in masterpage and it is important for me. also my print button is on master page. thanks..

share|improve this question

2 Answers

up vote 1 down vote accepted

You require to create new style sheet print.css and set CSS media=print

for example :

<style media="screen">
  .noPrint{ display: block; }
  .yesPrint{ display: block !important; }
</style>

<style media="print">
  .noPrint{ display: none; }
  .yesPrint{ display: block !important; }
</style>

and add class to "yesPrint" to the sections you want to print

  <asp:ContentPlaceHolder class="yesPrint" id="MainContent" runat="server">
  </asp:ContentPlaceHolder>

for more detatil : http://www.codeproject.com/KB/HTML/Printing_with_CSS.aspx

share|improve this answer
lot of thanks!!! it works :) – yboye Apr 16 '12 at 13:11
you welcome! dont forget to mark the answer correct :) – Zaheer Ahmed Apr 16 '12 at 13:13

You can setup a Print Stylesheet that formats thing for printing / you can hide things you don't want printing.

You can read more about them http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml here

share|improve this answer
thanks for answer. – yboye Apr 16 '12 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.