-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBorrowDetails.aspx
More file actions
97 lines (95 loc) · 3.55 KB
/
BorrowDetails.aspx
File metadata and controls
97 lines (95 loc) · 3.55 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
91
92
93
94
95
96
<%@ Page Title="" Language="VB" MasterPageFile="~/Main.master" AutoEventWireup="false" CodeFile="BorrowDetails.aspx.vb" Inherits="BorrowDetails" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width:100%;">
<tr>
<td class="style4">
<asp:Label ID="Label8" runat="server" Text="Member"></asp:Label>
</td>
<td class="style5">
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="AccessDataSource1" Width="235px" DataTextField="username"
DataValueField="username" Enabled="False">
</asp:DropDownList>
</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="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 Borrow"></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="Borrow" />
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" />
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
DataFile="~/Database/library.mdb"
SelectCommand="SELECT [username] FROM [login] ORDER BY [username]">
</asp:AccessDataSource>
</td>
<td>
</td>
</tr>
</table>
</asp:Content>