-
Notifications
You must be signed in to change notification settings - Fork 0
/
katildigim-turlar.aspx
57 lines (56 loc) · 2.96 KB
/
katildigim-turlar.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
53
54
55
56
57
<%@ Page Title="Mehmet Tours - Katıldığım Turlar" Language="C#" MasterPageFile="~/UyeMasterPage.master" AutoEventWireup="true" CodeFile="katildigim-turlar.aspx.cs" Inherits="katildigimturlar" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div class="d-flex flex-wrap">
<asp:Repeater ID="RepeaterKatildigimTurlar" runat="server">
<ItemTemplate>
<div class="justify-content-start ps-5 pt-2 pb-3">
<div class="card p-2 mt-2 bg-white">
<div class="about-product text-center mt-2">
<img alt="" height="320" width="320" src='<%#Eval("Resim") %>' />
</div>
<div class="d-flex justify-content-center fw-bold">
<span></span><span><%#Eval("Ad")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Açıklaması </label>
</span><span style="overflow: auto;"><%#Eval("Aciklama")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Kategorisi</label>
</span><span><%#Eval("KategoriAdi")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Başlangıç Tarihi </label>
</span><span><%#Eval("BaslangicTarihi")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Bitiş Tarihi </label>
</span><span><%#Eval("BitisTarihi")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Fiyatı </label>
</span><span><%#Eval("Fiyat")%>₺</span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Rehber </label>
</span><span><%#Eval("TurSahibi")%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Ödeme Tarihi </label>
</span><span><%#Eval("OdemeTarihi")%></span>
</div>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</asp:Content>