I have a simple asp.net form that allows the user to update a couple of fields. one of the buttons is a print button (required by client - they don't like the toolbar print button) so I have at the top of page_load
btnPrint.Attributes.Add("onclick", "window.print();")
My question is, how can I keep all the buttons (4) on the form from printing when the user prints from this click button?
TIA!
xeno
btnPrint.Attributes.Add("onclick", "window.print();")
My question is, how can I keep all the buttons (4) on the form from printing when the user prints from this click button?
TIA!
xeno