-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeleteDetails.aspx
More file actions
79 lines (77 loc) · 2.74 KB
/
DeleteDetails.aspx
File metadata and controls
79 lines (77 loc) · 2.74 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
<%@ Page Title="" Language="VB" MasterPageFile="~/Main.master" AutoEventWireup="false" CodeFile="DeleteDetails.aspx.vb" Inherits="DeleteDetails" %>
<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">
</td>
<td class="style5">
<asp:Label ID="Label7" runat="server" Text="Konfirmasi, Hapus Data Buku ?"
Font-Bold="True" ForeColor="#FF3300"></asp:Label>
</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">
</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="ButtonDelete" runat="server" Text="Delete" />
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" />
</td>
<td>
</td>
</tr>
</table>
</asp:Content>