標籤:java tar ext width get int
1.http://www.jb51.net/article/38083.htm
2。
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div id="PrintContent" runat="server">
ASP.NET網頁列印測試<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容內容內容內容內容內容內容<br />
內容內容內容內容內容內容內容<br />
</div>
<asp:Button ID="btnPrint" runat="server" Text="列印" OnClientClick="return PrintArticle();" />
</form>
</body>
</html>
<script type="text/javascript">
function PrintArticle() {
var pc = document.getElementById("<%=PrintContent.ClientID%>");
var pw = window.open(‘‘, ‘‘, ‘width=500,height=400‘); pw.document.write(‘<html>‘);
pw.document.write(‘<head>‘); pw.document.write(‘<title>ASP.NET網頁列印測試</title>‘); pw.document.write(‘</head>‘);
pw.document.write(‘<body>‘); pw.document.write(pc.innerHTML); pw.document.write(‘</body>‘);
pw.document.write(‘</html>‘); pw.document.close();
setTimeout(function () {
pw.print();
}, 500); return false;
}
</script>