Dear Experts.
I am using this Java script to print the webpage
<script type = "text/javascript">
function PrintPanel() {
if(Page_ClientValidate()){
var panel = document.getElementById("<%=pnlContents.ClientID %>");
var printWindow = window.open('', '', 'height=700,width=1000');
printWindow.document.write('<html><head><title>Trainee Appraisal Form</title>');
printWindow.document.write('</head><body >');
printWindow.document.write(panel.innerHTML);
printWindow.document.write('</body></html>');
printWindow.document.close();
setTimeout(function () {
printWindow.print();
}, 500);
} return false;
}
</script>
in My webpage there is form containing textbox's. After filling the textboxes and submitting the form, the print perview screen display's form with empty textbox's. Please find the screen shots of print perview screen
Thanks