-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheditCustomer.aspx
78 lines (75 loc) · 3.48 KB
/
editCustomer.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="" Language="C#" MasterPageFile="~/pos.Master" AutoEventWireup="true" CodeFile="editCustomer.aspx.cs" Inherits="ElectronicsPOS.editCustomer" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Main" Runat="Server">
<div>
<table class="auto-style1">
<tr>
<td class="auto-style2">Customer ID:</td>
<td> <asp:TextBox ID="CustomerID" runat="server" AutoPostBack="True" OnTextChanged="CustomerID_TextChanged" ></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Please enter a customer ID." ControlToValidate="CustomerID"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td>
</td>
</tr>
<tr>
<td class="auto-style3">First Name:</td>
<td class="auto-style4">
<asp:TextBox ID="fnameTxt" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">Last Name:</td>
<td>
<asp:TextBox ID="lnameTxt" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">E-mail:</td>
<td>
<asp:TextBox ID="emailTxt" runat="server" TextMode="Email"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ControlToValidate="emailTxt" ErrorMessage="Please fill in required information."></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="auto-style5">Phone #:</td>
<td class="auto-style6">
<asp:TextBox ID="phoneTxt" runat="server" TextMode="Phone"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">Address: </td>
<td>
<asp:TextBox ID="addressTxt" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">City:</td>
<td>
<asp:TextBox ID="cityTxt" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">State:</td>
<td>
<asp:TextBox ID="stateTxt" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2">Zip Code:</td>
<td>
<asp:TextBox ID="zipTxt" runat="server" TextMode="Number"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td>
<asp:Button ID="ApplyBtn" runat="server" Text="Apply changes" OnClick="ApplyBtn_Click" />
</td>
</tr>
</table>
</div>
</asp:Content>