-
Notifications
You must be signed in to change notification settings - Fork 0
/
Customers.aspx
107 lines (101 loc) · 4.05 KB
/
Customers.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<%@ Page Language="C#" MasterPageFile="~/PackersPlus.Master" AutoEventWireup="true" CodeBehind="Customers.aspx.cs" Inherits="NCRFTRWeb.WebForm2" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style type="text/css">
.style2
{
height: 66px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentMain" runat="server">
<div style="background-color:Menu; text-align:center">
<table>
<tr>
<td> </td>
<td><p style="color:Navy;"> </p></td>
<td> </td>
<td><asp:Button ID="DeleteBN" runat="server" Text="Delete" Enabled="false" onclick="DeleteBN_Click"/></td><td>
<asp:Button ID="AddNew" runat="server" Text="Add" onclick="AddNew_Click" /></td><td>
<asp:Button ID="Edit" runat="server" Text="Edit" Enabled="false" onclick="Edit_Click" /></td><td>
<asp:Button ID="Save" runat="server" Text="Save" Enabled="False" onclick="Save_Click" /></td><td>
<asp:Button ID="Cancel" runat="server" Text="Cancel" Enabled="False" onclick="Cancel_Click" /></td><td>
<asp:Button ID="Print" runat="server" Text="Print" Enabled="False" onclick="Print_Click" /></td>
</tr>
</table>
</div>
<br />
<asp:Panel ID="CustomerPanel" runat="server">
<table>
<tr>
<td colspan="3">
<asp:Label ID="MessageLBL" runat="server" ForeColor="#990000"></asp:Label>
</td>
</tr>
<tr style="background-color:Menu;">
<td class="style2">
<strong>Customer:</strong></td>
<td class="style2">
<asp:DropDownList ID="CustomerDDL" runat="server" AutoPostBack="true"
onselectedindexchanged="CustomerDDL_SelectedIndexChanged">
</asp:DropDownList>
</td>
<td class="style2">
</td>
</tr>
<tr>
<td>
Company:</td>
<td>
<asp:TextBox ID="customer_company" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
Contact Name:</td>
<td>
<asp:TextBox ID="customer_contact" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
Contact Phone:</td>
<td>
<asp:TextBox ID="customer_contactphone" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
Contact Extension:</td>
<td>
<asp:TextBox ID="customerExtension" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
Contact Fax:</td>
<td>
<asp:TextBox ID="customerFax" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
Contact Email:</td>
<td>
<asp:TextBox ID="customer_contactemail" runat="server"></asp:TextBox>
</td>
<td>
</td>
</tr>
</table>
</asp:Panel>
</asp:Content>