-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.aspx
More file actions
32 lines (30 loc) · 979 Bytes
/
Index.aspx
File metadata and controls
32 lines (30 loc) · 979 Bytes
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 Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="Index" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>Sistema de Post</h2>
<br />
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/Cadastrar.aspx">Cadastrar novo post</asp:HyperLink>
<br />
<br />
<br />
<strong>Listagem de posts<br />
</strong>
<br />
<asp:DataList ID="dtlPosts" runat="server">
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("titulo") %>'></asp:Label>
-
<asp:Label ID="Label3" runat="server" Text='<%# Eval("autor") %>'></asp:Label>
</ItemTemplate>
</asp:DataList>
<br />
</div>
</form>
</body>
</html>