-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYorumlar.aspx
52 lines (43 loc) · 2.39 KB
/
Yorumlar.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
<%@ Page Title="" Language="C#" MasterPageFile="~/Admin.master" AutoEventWireup="true" CodeFile="Yorumlar.aspx.cs" Inherits="Yorumlar" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div class="separator">
<asp:Label ID="Label1" runat="server" Text="ONAYLI YORUMLAR" CssClass="text-center text-white font-italic font-weight-bold" Style="font-size:x-large"></asp:Label>
</div>
<div class="list-group">
<asp:DataList ID="DataList1" runat="server">
<ItemTemplate>
<div class="list-group-item list-group-item-action d-flex align-items-center rounded-pill">
<div class="flex-fill">
<div class="font-weight-600">
<asp:Label ID="Label1" runat="server" CssClass="auto-style3" Text='<%# Eval("YorumAdSoyad") %>'></asp:Label>
</div>
</div>
<div style="margin-left: 25px">
<a href="YorumDetay.aspx?Yorumid=<%# Eval("Yorumid")%>"><i class="fa fa-2x fa-edit "></i></a>
</div>
</ItemTemplate>
</asp:DataList>
</div>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder2" runat="Server">
<div class="separator">
<asp:Label ID="Label2" runat="server" Text="ONAYSIZ YORUMLAR" CssClass="text-center text-white font-italic font-weight-bold" style="font-size:x-large" ></asp:Label>
</div>
<div class="list-group">
<asp:DataList ID="DataList2" runat="server">
<ItemTemplate>
<div class="list-group-item list-group-item-action d-flex align-items-center rounded-pill">
<div class="flex-fill">
<div class="font-weight-600">
<asp:Label ID="Label1" runat="server" CssClass="auto-style3" Text='<%# Eval("YorumAdSoyad") %>'></asp:Label>
</div>
</div>
<div style="margin-left: 25px">
<a href="YorumDetay.aspx?Yorumid=<%# Eval("Yorumid")%>"><i class="fa fa-2x fa-edit "></i></a>
</div>
</ItemTemplate>
</asp:DataList>
</div>
</asp:Content>