-
Notifications
You must be signed in to change notification settings - Fork 0
/
kategori-detay.aspx
70 lines (69 loc) · 4.03 KB
/
kategori-detay.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
58
59
60
61
62
63
64
65
66
67
68
69
70
<%@ Page Title="Mehmet Tours - Kategori Detay" Language="C#" MasterPageFile="~/UyeMasterPage.master" AutoEventWireup="true" CodeFile="kategori-detay.aspx.cs" Inherits="kategori_detay" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<div class="container-fluid border border-info border-1 mt-1">
<ul class="nav justify-content-center">
<asp:Repeater ID="Repeater_Kategoriler" runat="server">
<ItemTemplate>
<li class="nav-item">
<a class="nav-link rounded rounded-pill text-info"
href='<%#HttpUtility.HtmlEncode(KarakterDuzenleyici.KarakterDuzenle(Eval("kategoriAdi").ToString())) %>?kt=<%#HttpUtility.HtmlEncode(Eval("Id"))%>'>
<%#Eval("kategoriAdi") %>
</a>
</ItemTemplate>
</asp:Repeater>
</ul>
</div>
<div class="d-flex flex-wrap">
<asp:Repeater ID="Repeater_Turlar" runat="server">
<ItemTemplate>
<div class="justify-content-start ps-5 pb-3">
<div class="card p-2 mt-3 bg-white">
<div class="about-product text-center mt-2">
<img alt="" height="350" width="350" src='<%#HttpUtility.HtmlEncode(Eval("Resim")) %>' />
</div>
<div class="stats mt-2">
<div class="d-flex justify-content-center fw-bold">
<span></span><span><%#HttpUtility.HtmlEncode(KarakterDuzenleyici.KarakterDuzenle(Eval("turAdi").ToString()))%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Açıklaması </label>
</span><span style="overflow: auto;"><%#HttpUtility.HtmlEncode(Eval("Aciklama"))%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Kategorisi</label>
</span><span><%#HttpUtility.HtmlEncode(Eval("KategoriAdi"))%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Başlangıç Tarihi </label>
</span><span><%#HttpUtility.HtmlEncode(Eval("BaslangicTarihi"))%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Bitiş Tarihi </label>
</span><span><%#HttpUtility.HtmlEncode(Eval("BitisTarihi"))%></span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Fiyatı </label>
</span><span><%#HttpUtility.HtmlEncode(Eval("Fiyat"))%>₺</span>
</div>
<div class="d-flex justify-content-between">
<span>
<label>Rehber </label>
</span><span><%#HttpUtility.HtmlEncode(Eval("TurSahibi"))%></span>
</div>
</div>
<div>
<a href='odeme-sayfasi/<%#KarakterDuzenleyici.KarakterDuzenle(Eval("turAdi").ToString())%>?Tur=<%#HttpUtility.HtmlEncode(Eval("Tur"))%>' class="btn btn-success">Satın Al</a>
</div>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</asp:Content>