admin_userList.aspx
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:3k
- <%@ page language="C#" autoeventwireup="true" inherits="Admin_admin_userAdd, App_Web_moklqbh-" %>
- <!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" />
- <style type="text/css">
- #GridView1
- {
- position:relative ;
- table-layout:fixed;
- top:expression(this.offsetParent.scrollTop);
- z-index: 10;
- }
- #GridView1 th,{text-overflow:ellipsis;overflow:hidden;white-space: nowrap;padding:2px;}
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <h1>
- 管理员信息管理</h1>
- <h4>
- <b>相关操作:</b> <a href="admin_user_Add.aspx">添加新管理员</a> |
- </h4>
- <div style="height: 3px; width: 100%; background: #fff;">
- </div>
- <asp:GridView ID="GridView1" Width="100%" runat="server" CssClass="info_tab2" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" OnPageIndexChanging="GridView1_PageIndexChanging" OnSorting="GridView1_Sorting">
- <Columns>
- <asp:BoundField DataField="UserId_25175" HeaderText="帐号" SortExpression="UserId_25175" />
- <asp:BoundField DataField="UserName_25175" HeaderText="姓名"
- SortExpression="UserName_25175" />
- <asp:BoundField DataField="lastdate_25175" HeaderText="最后登录时间"
- SortExpression="lastdate_25175" />
- <asp:BoundField DataField="loads_25175" HeaderText="登录次数"
- SortExpression="loads_25175" />
- <asp:TemplateField HeaderText="操作">
- <ItemTemplate>
- <asp:Label ID="Label1" runat="server"><a href="admin_user_role.aspx?action=role&id=<%# Eval("id") %>">权限管理</a></asp:Label>
- </ItemTemplate>
- </asp:TemplateField>
- <asp:TemplateField HeaderText="删除">
- <ItemTemplate>
- <asp:Label ID="Label1" runat="server"><a href="?action=del&id=<%# Eval("id") %>">删除</a></asp:Label>
- </ItemTemplate>
- </asp:TemplateField>
- </Columns>
- </asp:GridView>
-
- <h1>
- </h1>
- </form>
- </body>
- </html>