28 lines
890 B
Plaintext
28 lines
890 B
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="print.aspx.cs" Inherits="admin_order_print" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>列印文件</title>
|
|
<script src="https://code.jquery.com/jquery-3.6.2.min.js"></script>
|
|
<link rel="stylesheet" href="print.css?v=202412061514" />
|
|
</head>
|
|
<body class="<%=body_class%>">
|
|
<form id="form1" runat="server">
|
|
<div class="docs">
|
|
<asp:Literal ID="word" runat="server"></asp:Literal>
|
|
</div>
|
|
</form>
|
|
|
|
<script src="print.js?v=202412061514"></script>
|
|
<script type="text/javascript">
|
|
window.onload = function () {
|
|
window.print();
|
|
//setTimeout(function () { window.close(); }, 1);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|