-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKhachHang.aspx
28 lines (27 loc) · 1.48 KB
/
KhachHang.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/AdminPages.Master" AutoEventWireup="true" CodeBehind="KhachHang.aspx.cs" Inherits="Restaurant003.KhachHang" %>
<asp:Content ID="Content1" ContentPlaceHolderID="title" runat="server">
Khach hang
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="pageTitle" runat="server">
Khách hàng
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="pagePath" runat="server">
Khách hàng
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="content" runat="server">
<div style="padding: 3px;">
<asp:GridView ID="gridKhachHang" runat="server" CssClass="table table-bordered table-hover text-center" AutoGenerateColumns="False" AllowPaging="True" PageSize="3"
OnPageIndexChanging="gridKhachHang_PageIndexChanging">
<Columns>
<asp:BoundField DataField="maKh" HeaderText="Mã khách hàng" />
<asp:BoundField DataField="tenKh" HeaderText="Tên khách hàng" />
<asp:BoundField DataField="diaChi" HeaderText="Địa chỉ" />
<asp:BoundField DataField="soDienThoai" HeaderText="Số điện thoại" />
<asp:BoundField DataField="email" HeaderText="Email" />
<asp:BoundField DataField="matKhau" HeaderText="Mật khẩu" />
</Columns>
</asp:GridView>
</div>
</asp:Content>
<asp:Content ID="Content5" ContentPlaceHolderID="scriptThemMon" runat="server">
</asp:Content>