-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewUserList.aspx
More file actions
31 lines (26 loc) · 1.51 KB
/
ViewUserList.aspx
File metadata and controls
31 lines (26 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<%@ Page Title="" Language="C#" MasterPageFile="~/AdminMaster.Master" AutoEventWireup="true" CodeBehind="ViewUserList.aspx.cs" Inherits="EADPProject.ViewUserList" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:Panel ID="PanelSearch" runat="server" DefaultButton="ButtonSearch">
<asp:TextBox ID="TBSearch" runat="server"
CssClass="text-search"
Text=""
Width="370" />
<asp:Button ID="ButtonSearch" runat="server"
CssClass="button-search"
Text="Search"
OnClick="ButtonSearch_Click" />
</asp:Panel>
<br />
<asp:GridView ID="GvSmile" runat="server" AutoGenerateColumns="False" OnSelectedIndexChanged="GvSmile_SelectedIndexChanged">
<Columns>
<asp:BoundField DataField="Username" HeaderText="Username" ReadOnly="True" />
<asp:BoundField DataField="FName" HeaderText="FName" ReadOnly="True" />
<asp:BoundField DataField="LName" HeaderText="LName" ReadOnly="True" />
<asp:BoundField DataField="Email" HeaderText="Email" ReadOnly="True" />
<asp:BoundField DataField="Usertype" HeaderText="Usertype" ReadOnly="True" />
<asp:CommandField ShowDeleteButton="True" />
</Columns>
</asp:GridView>
</asp:Content>