Display only Print button from toolbar in window.open

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gyanchand
    New Member
    • Jul 2007
    • 35

    Display only Print button from toolbar in window.open

    Using window.open, I am opening an htm page in popup window. I am just allowing the window to have the toolbar.

    Is there any setting by which I can allow only the "Print button" instead of the entire toolbar.


    Code for opening new window :
    OpenWin = window.open(pag e,"newwindow"," toolbar=Yes,men ubar=No,locatio n=No,scrollbars =Yes,resizable= No,status=No,wi dth=750,height= 500,left=150,to p=50,");
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    if there was, it wouldn't be with asp. Try HTML or maybe javascript, but I actually think you can't do that.

    Jared

    Comment

    • asdesigned
      New Member
      • Jul 2007
      • 3

      #3
      No. But you could open a frame whereby the top part contains a button with a window.print() action assigned and the bottom frame being the page you want to print.

      Comment

      Working...