Print page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sunilkhan
    New Member
    • Dec 2011
    • 1

    #1

    Print page

    how can i disable the print preview of page during printing
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    In a web browser? You can't. Or rather, the only way to do it would be through client-side scripting and that can be disabled so that the code doesn't run. But why would you even need to disable print preview?

    Comment

    • sramineni
      New Member
      • Dec 2011
      • 5

      #3
      By using CSS you can able to achieve in print preview blank page.
      Code:
      <style type="text/css" media="print">
      body 
      { display: none;} 
      </style>
      In above css code as we are using media="print" this will execute when we print the page only.

      Comment

      • Rabbit
        Recognized Expert MVP
        • Jan 2007
        • 12517

        #4
        Just be aware that not all versions of web browsers will support that.

        Comment

        Working...