Newbie: Printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everyone,
I'm new to the .NET technology. I have a Web Form with data fields which I
want to print to the printer. I don't want to use the IE's default print
because I can't have my own Header & Footer. Does anyone know if there's
anything else that I can use to print which allow me to insert my custom
Header & Footer?

Many thanks in advance.
KD
 
Hi,

Web Forms are run on the server side, so you obviously cannot control the
printing which happens on the client side. What you can do is using the
"@media" CSS feature (not sure about the correct syntax) which allows to
have one view of a page when it's rendered on the screen and another one
when the page is printed.
 
Back
Top