-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.aspx
31 lines (29 loc) · 1.03 KB
/
index.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="Three_Tier_Architecture_Application.index" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Customer Managment System</title>
</head>
<body>
<a href="display.aspx">Display</a>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblName" runat="server" Text="Name"></asp:Label> 
<asp:TextBox ID="txtName" runat="server"></asp:TextBox>
</div>
<br />
<div>
<asp:Label ID="lblEmailID" runat="server" Text="Email ID"></asp:Label> 
<asp:TextBox ID="txtEmailID" runat="server"></asp:TextBox>
</div>
<br />
<div>
<asp:Button ID="bttnSubmit" runat="server" Text="Add" OnClick="BttnSubmit_Click" />
</div>
<br />
<div>
<asp:Label ID="lblMessage" runat="server" Text="" Visible="false"></asp:Label> 
</div>
</form>
</body>
</html>