-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayment.aspx
78 lines (73 loc) · 4.86 KB
/
Payment.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
77
78
<%@ Page Title="Payment" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="Payment.aspx.cs" Inherits="Payment" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<asp:ImageButton ID="ImageButton4" runat="server" ImageUrl="~/images/images.jpeg" /> <br />
<h2>PAYMENT OPTIONS</h2>
<br />
<asp:Label ID="Label1" runat="server" Font-Bold="True" Style="color: red" Text="SECURITY AMOUNT $300"
Width="213px"></asp:Label>
<br />
<table style="width: 655px; height: 343px">
<tr>
<td style="width: 114px">
<asp:ImageButton ID="ImageButton1" runat="server" Height="71px" ImageUrl="~/images/credit.jpg"
OnClick="ImageButton1_Click" Width="114px" /></td>
<td>
<asp:LinkButton ID="LinkButton1" runat="server" Font-Bold="True" Font-Size="12pt"
OnClick="LinkButton1_Click1" Style="color: black">CREDIT CARD</asp:LinkButton></td>
</tr>
<tr>
<td style="width: 114px">
<asp:ImageButton ID="ImageButton2" runat="server" Height="71px" ImageUrl="~/images/debit.png"
Width="114px" OnClick="ImageButton2_Click" /></td>
<td>
<asp:LinkButton ID="LinkButton2" runat="server" Font-Bold="True" Font-Size="12pt"
OnClick="LinkButton2_Click1" Style="color: black">DEBIT CARD</asp:LinkButton></td>
</tr>
<tr>
<td style="width: 114px">
</td>
</tr>
</table>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</asp:Content>