<%@ Master Language="C#" AutoEventWireup="true" CodeFile="ManagerPage.master.cs"
Inherits="ManagerPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>管理平台</title>
<asp:ContentPlaceHolder ID="H" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div class="toolbar">
<img src="<%= ResolveUrl("~/Admin/images/tb.gif") %>" width="16" height="16" alt="" />
你当前的位置:<asp:Literal ID="Navigation" runat="server" EnableViewState="false"></asp:Literal>
</div>
<asp:ContentPlaceHolder ID="C" runat="server">
</asp:ContentPlaceHolder>
</form>
</body>
</html>
|