How can I see print preview of my invoice generated from website. If I print with the script
print this page>
function printReport( )
{
document.getElementById('ImagePrint').style.visibility='hidden';
window.print();
document.getElementById('ImagePrint').style.visibility='visible';
}
in html body
This function will not show ur image in printing. u can use your control rather than image with control id. hope u will get ur solution