ASP.NET & Printing Web Pages

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

Guest

Hi

I am working on a solution for a web page that can print itself using the
browser's printing capabilitiy, but I cannot use javascript on the project.
How can I print the web page?

Thanks in advance for any help.
 
Mjcast,

Your question can be interpreted a few ways. Ask it more specifically --
give a use scenario -- and I'll try to help.

-KF
 
Let me make sure I've got this right - you are writing a page that (after
loading) will automatically try to print itself. But you cannot use
Javascript right?

To my knowledge this cannot be done. ASP.NET is all server side, so it
cannot directly send commands to the browser. Your code would have to
generate javascript print functionality, but you can't use that. I think
you are out of luck without js.
 
Back
Top