从Web.config文件里面获取站点标题
2014-01-22 15:05 池戎 阅读(177) 评论(0) 编辑 收藏 举报Web.config文件:
<appSettings>
<add key="SiteTitle" value="Aeromatex Demo Site"/>
</appSettings>
MasterPage.master页面:
<div id="header">
<h1>
<asp:Literal ID="Literal1" runat="server" Text="<%$ AppSettings:SiteTitle %>" /></h1>
<asp:SiteMapPath ID="SiteMapPath1" runat="server" CssClass="breadcrumb" />
</div>
如有疑问,请和我一起讨论。