admin_res_yea.aspx
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:3k
源码类别:

行业应用

开发平台:

JavaScript

  1. <%@ page language="C#" autoeventwireup="true" inherits="Admin_admin_res_yea, App_Web_moklqbh-" %>
  2. <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6.   <title>学生系统后台管理</title>
  7.     <script src="inc/admin.js" type="text/javascript"></script>
  8.     <script src="inc/showpage.js" type="text/javascript"></script>
  9.     <link href="images/css.css" type="text/css" rel="stylesheet" />
  10.     <link href="images/admin_file_css.css" type="text/css" rel="stylesheet" />
  11. </head>
  12. <body>
  13.     <form id="form1" runat="server">
  14.       <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/student.mdb" SelectCommand="SELECT * FROM [res_lj]" ConflictDetection="CompareAllValues" OnSelected="AccessDataSource1_Selected"></asp:AccessDataSource>
  15.     <h1>
  16.         年届信息管理</h1>
  17.     <h4>
  18.         
  19.         <b>相关操作:</b> <a href="admin_res_yea_add.aspx">添加新年届</a> | <a href="admin_res_yea.aspx">年届列表管理</a>
  20.     </h4>
  21.     <div style="height: 3px; width: 100%; background: #fff;">
  22.     </div>
  23.     <table width="100%" cellspacing="1" cellpadding="0" class="info_tab2">
  24.         <tr>
  25.          
  26.             <th width="5%" style="height: 34px">
  27.                 ID
  28.             </th>
  29.             <th width="20%" style="height: 34px">
  30.                 年届
  31.             </th>
  32.             <th width="10%" style="height: 34px">
  33.                 操作
  34.             </th>
  35.             <th width="" style="height: 34px">
  36.             </th>
  37.         </tr>
  38.         <asp:Repeater ID="Repeater1" runat="server">
  39.             <ItemTemplate>
  40.                 <tr>
  41.                
  42.                     <td>
  43.                         &nbsp;<%# Eval("id").ToString()%>
  44.                     </td>
  45.                     <td>
  46.                         &nbsp;<%# Eval("lj").ToString()%>
  47.                     </td>
  48.                     <td>
  49.                         &nbsp;<a href="admin_res_yea_add.aspx?action=edit&id=<%# Eval("id").ToString()%>">修改</a>|<a href="admin_res_yea_add.aspx?action=del&id=<%# Eval("id").ToString()%>" onclick="return confirm('确实要删除吗')" >删除</a>
  50.                     </td>
  51.                     <td>
  52.                         &nbsp;
  53.                     </td>
  54.                 </tr>
  55.             </ItemTemplate>
  56.         </asp:Repeater>
  57.          
  58.     </table>    
  59.                 <webdiyer:AspNetPager ID="AspNetPager1" runat="server" CssClass="anpager" CurrentPageButtonClass="cpb" FirstPageText="<<" LastPageText=">>" NextPageText=">" PrevPageText="<" ShowCustomInfoSection="Left" ShowDisabledButtons="False" ShowInputBox="Never">
  60.             </webdiyer:AspNetPager>
  61.     <h1>
  62.         &nbsp;</h1>
  63.     </form>
  64. </body>
  65. </html>