CitySunlight/CitySunlight/Basic.Master

26 lines
845 B
Plaintext

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Basic.Master.cs" Inherits="CitySunlight.Basic" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<link rel="stylesheet" href="/CssStyle/CityStyle.css" />
<title>都市阳光销售系统</title>
</head>
<body>
<table align="center">
<tr>
<td>
<a href="/Main.aspx">
<img src="/Picture/head.jpg" alt="主页图片" /></a></td>
<td><%= GetLoginInfo() %></td>
</tr>
</table>
<asp:ContentPlaceHolder ID="body" runat="server">
</asp:ContentPlaceHolder>
</body>
</html>