-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicePrice.aspx
35 lines (32 loc) · 1.78 KB
/
servicePrice.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
29
30
31
32
33
34
35
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="servicePrice.aspx.cs" Inherits="ShoppingHotspot.servicePrice" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<!-- Start All Title Box -->
<div class="all-title-box">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Services Under '<asp:Label ID="lblSeriveTypeByQueryString" CssClass="fntcolor" runat="server"></asp:Label>'</h2>
<ul class="breadcrumb">
<li class="breadcrumb-item"><a href="Default.aspx">Home</a></li>
<li class="breadcrumb-item active">Services/Prices</li>
</ul>
</div>
</div>
</div>
</div>
<!-- End All Title Box -->
<div class="row">
<div class="col-sm-12">
<div class="white-box">
<div class="table-responsive">
<asp:GridView ID="GrdServicePrice" AllowPaging="true" OnPageIndexChanging="GrdServicePrice_PageIndexChanging" class="table" AutoGenerateColumns="false" runat="server" PageSize="10" AllowSorting="True" >
<Columns>
<asp:BoundField DataField="ServiceName" HeaderText="Service Name"></asp:BoundField>
<asp:BoundField DataField="Price" HeaderText="Price"></asp:BoundField>
</Columns>
</asp:GridView>
</div>
</div>
</div>
</div>
</asp:Content>