admin_res_Col.aspx
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:3k
- <%@ page language="C#" autoeventwireup="true" inherits="Admin_admin_res_yea, App_Web_jinvcodt" %>
- <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>学生信息后台管理</title>
- <script src="inc/admin.js" type="text/javascript"></script>
- <script src="inc/showpage.js" type="text/javascript"></script>
- <link href="images/css.css" type="text/css" rel="stylesheet" />
- <link href="images/admin_file_css.css" type="text/css" rel="stylesheet" />
- </head>
- <body>
- <form id="form1" runat="server">
- <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/student.mdb" SelectCommand="SELECT * FROM [res_Col]" OnSelected="AccessDataSource1_Selected"></asp:AccessDataSource>
- <h1>
- 系所信息管理</h1>
- <h4>
-
- <b>相关操作:</b> <a href="admin_res_Col_Add.aspx">添加新系所</a> | <a href="admin_res_Col.aspx">系所列表管理</a>
- </h4>
- <div style="height: 3px; width: 100%; background: #fff;">
- </div>
- <table width="100%" cellspacing="1" cellpadding="0" class="info_tab2">
- <tr>
-
- <th width="5%" style="height: 34px">
- ID
- </th>
- <th width="20%" style="height: 34px">
- 系所
- </th>
- <th width="10%" style="height: 34px">
- 操作
- </th>
- <th width="" style="height: 34px">
- </th>
- </tr>
- <asp:Repeater ID="Repeater1" runat="server">
- <ItemTemplate>
- <tr>
-
- <td>
- <%# Eval("id").ToString()%>
- </td>
- <td>
- <%# Eval("col").ToString()%>
- </td>
- <td>
- <a href="admin_res_Col_Add.aspx?action=edit&id=<%# Eval("id").ToString()%>">修改</a>|<a href="admin_res_Col_Add.aspx?action=del&id=<%# Eval("id").ToString()%>" onclick="return confirm('确实要删除吗')" >删除</a>
- </td>
- <td>
-
- </td>
- </tr>
- </ItemTemplate>
- </asp:Repeater>
-
- </table>
- <webdiyer:AspNetPager ID="AspNetPager1" runat="server" CssClass="anpager" CurrentPageButtonClass="cpb" FirstPageText="<<" LastPageText=">>" NextPageText=">" PrevPageText="<" ShowCustomInfoSection="Left" ShowDisabledButtons="False" ShowInputBox="Never">
- </webdiyer:AspNetPager>
- <h1>
- </h1>
- </form>
- </body>
- </html>