温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:LiveBlog v1.0测试版源码
当前文件:
LiveBlog/LiveBlog.Web/Admin/AdminPage.master,打开代码结构图
LiveBlog/LiveBlog.Web/Admin/AdminPage.master,打开代码结构图1<%@ Master Language="C#" AutoEventWireup="true" CodeFile="AdminPage.master.cs" Inherits="admin_admin" %> 2
<%@ Register Src="Menu.ascx" TagName="Menu" TagPrefix="uc1" %> 3
<%@ Import Namespace="LiveBlog.Core" %> 4
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 5
<html xmlns="http://www.w3.org/1999/xhtml" style="height: 100%;"> 6
<head id="Head1" runat="server"> 7
<title>控制面板</title> 8
<link rel="stylesheet" type="text/css" href="style.css" /> 9
<link rel="shortcut icon" href="~/favicon.ico" type="image/x-icon"/> 10
</head> 11
<body> 12
<form id="form1" runat="server"> 13
<div id="top"> 14
<h4><%=Resources.labels.administrationPanel %></h4> 15
<span> 16
<asp:LoginStatus ID="LoginStatus1" runat="server" SkinID="adminLoginStatus" /> 17
<a href="<%=Utils.RelativeWebRoot %>"><%=Resources.labels.goToFrontPage %></a> 18
</span> 19
<div class="tabs"> 20
<uc1:Menu ID="Menu1" runat="server" /> 21
</div> 22
</div> 23
24
<div id="main"> 25
<asp:ContentPlaceHolder ID="cphAdmin" runat="server" /> 26
</div> 27
28
<div id="footer"> 29
<a href="http://www.iusers.com.cn" target="_blank"><%=BlogSettings.Instance.Title() %></a> <%=BlogSettings.Instance.Version() %> powerd by blogengine 30
</div> 31
</form> 32
</body> 33
</html>




