-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCredit.aspx
75 lines (72 loc) · 5.1 KB
/
Credit.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
<%@ Page Title="Credit" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="Credit.aspx.cs" Inherits="Credit" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div style="background-color: #ccff99">
<br />
<br />
<br />
<asp:Label ID="Label3" runat="server" Font-Bold="True" Text="Account Type"></asp:Label>
<asp:RadioButton ID="RadioButton1" runat="server" Text="Savings"
Width="68px" />
<asp:RadioButton ID="RadioButton2" runat="server" Text="Checking" Width="72px" /><br />
<br />
<asp:Label ID="Label2" runat="server" Font-Bold="True" Text="Card No."></asp:Label>
<asp:TextBox ID="TextBox2" runat="server" Width="151px" MaxLength="4" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBox2"
ErrorMessage="*Mandatory Field" Font-Bold="True" Font-Size="10pt"></asp:RequiredFieldValidator>
<br />
<br />
<asp:Label ID="Label1" runat="server" Font-Bold="True" Text="Amount"></asp:Label>
<asp:TextBox ID="TextBox1" runat="server" OnTextChanged="TextBox1_TextChanged1" Width="151px"></asp:TextBox>
<asp:Label ID="Label4" runat="server" Font-Bold="True" Style="color: red" Text="Enter the correct amount"
Visible="False" Width="172px"></asp:Label>
<br />
<br />
<br />
<br />
<asp:Button ID="Button1" runat="server"
Font-Bold="True" Font-Size="11pt" OnClick="Button1_Click" Style="color: white;
background-color: black" Text="PAY NOW" />
<asp:Label ID="Label5" runat="server" Font-Bold="True" Font-Size="12pt" Text="PAYMENT RECEIVED..."
Visible="False" Width="187px"></asp:Label><br />
<br />
<asp:LinkButton ID="LinkButton1" runat="server" Font-Bold="True" OnClick="LinkButton1_Click">Home</asp:LinkButton>
<br />
<br />
<br />
<br />
</div>
</asp:content>