-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBayarDenda.aspx
More file actions
80 lines (77 loc) · 2.86 KB
/
BayarDenda.aspx
File metadata and controls
80 lines (77 loc) · 2.86 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<%@ Page Title="" Language="VB" MasterPageFile="~/Main.master" AutoEventWireup="false" CodeFile="BayarDenda.aspx.vb" Inherits="BayarDenda" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style4
{
width: 176px;
}
.style5
{
width: 250px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<p>
<asp:Label ID="Label2" runat="server" Font-Size="X-Large" Text="Denda"></asp:Label>
</p>
<p>
<table style="width:100%;">
<tr>
<td class="style4">
<asp:Label ID="Label5" runat="server" Text="Tanggal Denda"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxTanggalDenda" runat="server" Width="235px"
ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
Member</td>
<td class="style5">
<asp:TextBox ID="TextBoxMember" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
<asp:Label ID="Label3" runat="server" Text="Kode MK"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxKodeMK" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
<asp:Label ID="Label4" runat="server" Text="Jumlah Denda"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxDenda" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
</td>
<td class="style5">
</td>
<td>
<asp:Label ID="LabelError" runat="server" ForeColor="#FF3300"></asp:Label>
</td>
</tr>
</table>
</p>
<p>
<asp:Button ID="ButtonPay" runat="server" Text="Pay" Width="70px"/>
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" Width="70px"/>
</p>
</asp:Content>