24 lines
801 B
Plaintext
24 lines
801 B
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="exportExcel.aspx.cs" Inherits="admin_print_exportExcel" %>
|
|
|
|
<!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>EXCEL文件</title>
|
|
<script src="https://code.jquery.com/jquery-3.6.2.min.js"></script>
|
|
<link rel="stylesheet" href="print.css" />
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div class="pages">
|
|
<asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="Repeater1_ItemDataBound">
|
|
<ItemTemplate>
|
|
<asp:Literal ID="word" runat="server"></asp:Literal>
|
|
</ItemTemplate>
|
|
</asp:Repeater>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|