i have payslip webform in my website, when i convert webform page to PDF its converted but logo iomage not showing. the following is my code.Plz help me.
<script type="text/javascript">
function CallPrint(strid) {
var prtContent = document.getElementById(strid);
var WinPrint = window.open('', '', 'letf=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status=0');
WinPrint.document.write(prtContent.innerHTML);
WinPrint.document.close();
WinPrint.focus();
WinPrint.print();
WinPrint.close();
//prtContent.innerHTML=strOldOne;
}
function Button2_onclick() {
}
</script>
<div id="divPrint">
<table>
......
.....
</table>
</div>
<input id="Button1" type="button" name="btnPrint" value="Print" onClick="javascript:CallPrint('divPrint');" Runat="Server"
cla ...
Go to the complete details ...