-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListDenda.aspx
More file actions
36 lines (34 loc) · 2.09 KB
/
ListDenda.aspx
File metadata and controls
36 lines (34 loc) · 2.09 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
32
33
34
35
<%@ Page Title="" Language="VB" MasterPageFile="~/Main.master" AutoEventWireup="false" CodeFile="ListDenda.aspx.vb" Inherits="ListDenda" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:GridView ID="GridView1" runat="server" BackColor="#DEBA84"
BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3"
CellSpacing="2" AutoGenerateColumns="False" DataKeyNames="ID"
DataSourceID="AccessDataSource2" AllowPaging="True" AllowSorting="True">
<RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
<Columns>
<asp:CommandField SelectText="Pay" />
<asp:BoundField DataField="ID" HeaderText="ID" ReadOnly="True"
SortExpression="ID" Visible="False" />
<asp:BoundField DataField="TglDenda" HeaderText="TglDenda"
SortExpression="TglDenda" DataFormatString="{0:d}" />
<asp:BoundField DataField="username" HeaderText="username"
SortExpression="username" />
<asp:BoundField DataField="KodeMK" HeaderText="KodeMK"
SortExpression="KodeMK" />
<asp:BoundField DataField="Jumlah" HeaderText="Jumlah"
SortExpression="Jumlah" />
<asp:BoundField DataField="Status" HeaderText="Status"
SortExpression="Status" />
</Columns>
<FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
<PagerStyle ForeColor="#8C4510" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
</asp:GridView>
<asp:AccessDataSource ID="AccessDataSource2" runat="server"
DataFile="~/Database/library.mdb"
SelectCommand="SELECT * FROM [denda] ORDER BY [TglDenda]">
</asp:AccessDataSource>
</asp:Content>