-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActivate_Shop.aspx
77 lines (76 loc) · 5.58 KB
/
Activate_Shop.aspx
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
<%@ Page Language="C#" MasterPageFile="~/MasterPage3.master" AutoEventWireup="true" CodeFile="Activate_Shop.aspx.cs" Inherits="Activate_Shop" Title="Poshora :: Activate Bookshop" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Label ID="Label8" runat="server" Font-Bold="True" Text="Label" Visible="False" Font-Size="X-Large" ForeColor="Green"></asp:Label>
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="The following bookshops are deactivated." Font-Bold="True"></asp:Label><br />
<br />
<asp:DataList ID="DataList1"
runat="server" OnItemCommand="DataList1_ItemCommand" HorizontalAlign="Center">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="activate" Text='<%# Bind("name") %>' Font-Bold="True" ForeColor="#0000C0"></asp:LinkButton>
<asp:Label ID="Label3" runat="server" Font-Bold="True" Text="-- Shop ID: "></asp:Label>
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="activate" Text='<%# Bind("shop_id") %>' Font-Bold="True" ForeColor="#0000C0"></asp:LinkButton>
</ItemTemplate>
</asp:DataList><br />
<br />
<br />
<asp:Label ID="Label4" runat="server" Text="Shop:" Visible="False" Font-Bold="True"></asp:Label>
<asp:Label ID="name_label" runat="server" Text="Label" Visible="False"></asp:Label>
<asp:Label ID="Label7" runat="server" ForeColor="Red" Text="Fill up the amount" Visible="False" Font-Bold="True"></asp:Label><br />
<asp:Label ID="Label5" runat="server" Text="Shop ID: " Visible="False" Font-Bold="True"></asp:Label>
<asp:Label ID="id_label" runat="server" Text="Label" Visible="False"></asp:Label>
<br />
<asp:Label ID="Label6" runat="server" Text="Amount:" Visible="False" Font-Bold="True"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server" Visible="False" Width="101px"></asp:TextBox>
<asp:Button ID="activate_button" runat="server" OnClick="activate_button_Click" Text="Activate"
Visible="False" Font-Bold="True" /><br />
<br />
<br />
<br />
<br />
<br />
<br />
</asp:Content>