<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Myfavorite.aspx.cs" Inherits="Restaurant.WEB.Myfavorite" %>
<%@ Register Src="~/UserControl/PagePart1.ascx" TagName="PartPages1" TagPrefix="uc1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="Style/FavorOrder.css" rel="stylesheet" />
<link href="App_Themes/Admin/tableTemplate.css" rel="stylesheet" />
</head>
<body>
<form id="form1" runat="server">
<div id="wrapper">
<div id="logo">
<a href="Index.aspx">
<h1>PRADA</h1>
<h2>享受生活
<span></span>
发现美味
</h2>
</a>
</div>
<div id="content">
<div class="grid" id="Div1" runat="server">
<!---信息显示-->
<div class="gridScroller" style="width: 100%; overflow: auto; background-color: #fafafa;">
<div class="gridTbody">
<div style="position: relative; width: 100%; height: 50px; background-color: azure;">
<p style="text-align: center; font-size: 24px;">我的收藏</p>
</div>
<asp:Repeater ID="Repeater2" runat="server">
<ItemTemplate>
<div style="position: relative; height: 150px; width: 200px; margin: 15px 10px 15px 40px; box-shadow: cadetblue 3px 3px 2px; float: left;">
<a href="FoodInfo.aspx?type=2&content=<%#Eval("FoodID") %>">
<image src='<%#Eval("FoodImg") %>' class="pic" alt='<%#Eval("FoodDes") %>'>
<span style="background-color: #000000;opacity:0.5;color:#ffffff;position:absolute;bottom:50px;right:0;">
<%#Eval("FoodName") %>
</span>
</image>
</a>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</div>
<div class="panelBar" style="position: relative; height: 25px; width: 100%; background-color: transparent; bottom: 0;">
<uc1:PartPages1 runat="server" ControlId="Repeater2" ID="PartPages1" />
</div>
</div>
</div>
</div>
</form>
</body>
</html>