-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAddSecondaryEmail.aspx
32 lines (31 loc) · 1.54 KB
/
AddSecondaryEmail.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
CodeFile="AddSecondaryEmail.aspx.cs" Inherits="AddSecondaryEmail" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<br />
<br />
<table cellpadding="2" cellspacing="2" align="center" width="70%">
<tr style="height: 30px;">
<td colspan="2" align="Center">
<asp:Label ID="lblMsg" Font-Bold="true" ForeColor="Red" runat="server" Visible="false"></asp:Label>
</td>
</tr>
<tr>
<td style="width: 125px;">
<asp:Label ID="lblSecondaryMail" runat="server" Text="Secondary Email - "></asp:Label>
</td>
<td>
<asp:TextBox ID="txtSecondaryMail" runat="server" Width="350px"></asp:TextBox>
<asp:Label ID="lblSecondaryMail_1" Font-Bold="true" runat="server"></asp:Label>
<asp:LinkButton ID="lnkUpdate" runat="server" Text="update" Font-Size="Smaller" OnClick="lnkUpdate_Click"></asp:LinkButton>
</td>
</tr>
<tr>
<td colspan="2" align="right" style="padding-right: 36px;">
<asp:ImageButton ID="imgbtnSubmit" runat="server" ImageUrl="~/Images/Submit.gif"
OnClick="imgbtnSubmit_Click" onmouseout="this.src='Images/Submit.gif'" onmouseover="this.src='Images/Submit_hvr.gif'"
ValidationGroup="VGSubmit" />
</td>
</tr>
</table>
</asp:Content>