로딩되는 페이지 프린트 하는 방법은
그냥 <BODY ... onload="javascript:window.print();"> 이렇게 할 경우는 자동으로 띄워짐
이렇게 BODY 에 넣어 주시면 되구염!!

버튼으로 하실려면..

<script>
function print_this()
{
window.print();
}
</script>
<input type=button onclick="print_this(); return false;" value="Print This Page">

이런식으로 하면 되겠네욤 ^^;;

<NOPRINT> ~ </NOPRINT> 사이에는 프린트 되지 안습니다.
Posted by 알 수 없는 사용자
,