-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookingDetail.aspx
More file actions
91 lines (88 loc) · 2.95 KB
/
BookingDetail.aspx
File metadata and controls
91 lines (88 loc) · 2.95 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
80
81
82
83
84
85
86
87
88
89
90
<%@ Page Title="" Language="VB" MasterPageFile="~/Main.master" AutoEventWireup="false" CodeFile="BookingDetail.aspx.vb" Inherits="BookingDetail" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style4
{
width: 127px;
}
.style5
{
width: 269px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width:100%;">
<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="Pengarang"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxPengarang" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
<asp:Label ID="Label5" runat="server" Text="Judul"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxJudul" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
<asp:Label ID="Label6" runat="server" Text="Penerbit"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxPenerbit" runat="server" Width="235px" ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
<asp:Label ID="Label7" runat="server" Text="Tgl Booking"></asp:Label>
</td>
<td class="style5">
<asp:TextBox ID="TextBoxTglBooking" runat="server" Width="235px"
ReadOnly="True"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
</td>
<td class="style5">
<asp:Label ID="LabelError" runat="server" ForeColor="#FF3300"></asp:Label>
</td>
<td>
</td>
</tr>
<tr>
<td class="style4">
</td>
<td class="style5">
<asp:Button ID="ButtonBooking" runat="server" Text="Booking" />
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" />
</td>
<td>
</td>
</tr>
</table>
</asp:Content>