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

行业应用

开发平台:

JavaScript

  1. <%@ page language="C#" autoeventwireup="true" inherits="Admin_admin_userAdd, App_Web_moklqbh-" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6.       <script src="inc/admin.js" type="text/javascript"></script>
  7.     <script src="inc/showpage.js" type="text/javascript"></script>
  8.     <link href="images/css.css" type="text/css" rel="stylesheet" />
  9.     <link href="images/admin_file_css.css" type="text/css" rel="stylesheet" />
  10.     <style type="text/css"> 
  11.      #GridView1 
  12.     {     
  13.         position:relative ; 
  14.         table-layout:fixed;
  15.         top:expression(this.offsetParent.scrollTop);   
  16.         z-index: 10;
  17.     } 
  18. #GridView1 th,{text-overflow:ellipsis;overflow:hidden;white-space: nowrap;padding:2px;}
  19. </style>
  20. </head>
  21. <body>
  22.     <form id="form1" runat="server">
  23.         <h1>
  24.         管理员信息管理</h1>
  25.     <h4>
  26.         <b>相关操作:</b> <a href="admin_user_Add.aspx">添加新管理员</a> |
  27.     </h4>
  28.     <div style="height: 3px; width: 100%; background: #fff;">
  29.     </div>
  30.         <asp:GridView ID="GridView1" Width="100%" runat="server" CssClass="info_tab2" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" OnPageIndexChanging="GridView1_PageIndexChanging" OnSorting="GridView1_Sorting">
  31.             <Columns>
  32.                 <asp:BoundField DataField="UserId_25175" HeaderText="帐号" SortExpression="UserId_25175" />
  33.                 <asp:BoundField DataField="UserName_25175" HeaderText="姓名" 
  34.                     SortExpression="UserName_25175" />
  35.                 <asp:BoundField DataField="lastdate_25175" HeaderText="最后登录时间" 
  36.                     SortExpression="lastdate_25175" />
  37.                 <asp:BoundField DataField="loads_25175" HeaderText="登录次数" 
  38.                     SortExpression="loads_25175" />
  39.                 <asp:TemplateField HeaderText="操作">
  40.                     <ItemTemplate>
  41.                      <asp:Label ID="Label1" runat="server"><a href="admin_user_role.aspx?action=role&id=<%# Eval("id") %>">权限管理</a></asp:Label>
  42.                     </ItemTemplate>
  43.                 </asp:TemplateField>
  44.                    <asp:TemplateField HeaderText="删除">
  45.                     <ItemTemplate>
  46.                      <asp:Label ID="Label1" runat="server"><a href="?action=del&id=<%# Eval("id") %>">删除</a></asp:Label>
  47.                     </ItemTemplate>
  48.                 </asp:TemplateField>
  49.             </Columns>
  50.         </asp:GridView>
  51.  
  52.     <h1>
  53.         &nbsp;</h1>
  54.     </form>
  55. </body>
  56. </html>