รายละเอียดของการตอบ ::
... Blank page เรากำหนดได้มั้ยครับว่าต้องการยาวเท่าไหร่ ผมปริ้นแล้วมันออกมายาวเลย
<script type="text/javascript">
function PrintPage() {
var printContent = document.getElementById('<%=Panel1.ClientID %>');
var printWindow = window.open('','','left=0,top=0,width=250,height=300');
printWindow.document.write(printContent.innerHTML);
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
}
</script>