Link to home
Start Free TrialLog in
Avatar of genesisproject
genesisproject

asked on

printing my web pages

I created an online invoice (aspx) for the user to print out, but when I print out the information part of my invoice gets cut off (right side).  Is there a way in .net that all my information will get captured. ( I am using the print button on the browser)
Avatar of RogerSTHLM
RogerSTHLM

No. Asp.net runs on server side. It has no idea when printing occurs.

However you can use a seperated style sheet used when printing occur. Use following syntax....
<LINK rel="stylesheet" type"text/css"  href="youStyleSheetPrintFile.css" media="print">

Cheers
R
ASKER CERTIFIED SOLUTION
Avatar of Torrwin
Torrwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial