WEBページのローカルプリント
6212 ワード
WEBページのローカルプリントについて:
JScript code
JScript code
----------------------------------------
<
script language
=
"
javascript
"
>
<!--
function
PrintNote() {
var
PrintWin
=
window.open(
'
about:blank
'
,
'
Print
'
); PrintWin.document.write(
'
<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
'
+
document.all(
"
PrintContent
"
).innerHTML); PrintWin.document.all.WebBrowser.ExecWB(
7
,
1
); PrintWin.close(); }
-->
<
/
script>
--------------------------------------------
<
div
>
, DIV ID
<
div id
=
"
PrintContent
"
align
=
"
center
"
>
your GridView
<
/
div>
------------------------------------
<
input onclick
=
"
javascript:PrintNote();
"
type
=
"
button
"
value
=
"
"
id
=
"
Button2
"
onserverclick
=
"
Button2_ServerClick
"
runat
=
"
server
"/
>
gridvieコントロールをDIVに入れるとプリントができます.