-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay.aspx
40 lines (37 loc) · 1.23 KB
/
display.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="display.aspx.cs" Inherits="Three_Tier_Architecture_Application.display" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Display Customer</title>
</head>
<body>
<a href="index.aspx">Add Record</a><br/>
<asp:Repeater ID="r1" runat="server">
<HeaderTemplate>
<table collspan="10">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><%# Eval("id") %></td>
<td><%# Eval("name") %></td>
<td><%# Eval("emailid") %></td>
<td><a href='index.aspx?id=<%# Eval("id") %>&type=update'>Edit</a> 
<a href='display.aspx?id=<%# Eval("id") %>&type=delete'>Delete</a>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
</body>
</html>