在老外的站上看到解决的好方法,故简略编译之:
在一个asp.net 的利用中,经常要动态修正页面的标题,一个典范的例子就是,在一个页面导航的控件中,盼看用户点选哪一个连接,在页面的title里就显示相干的内容,举个例子,比如一个网站,有如下的网站架构:
有图书分类,下面再有中国图书,外国图书分类,则一般可以用树形或者asp.net 2.0的新增加的导航栏控件
(sitemap),来实现,比如
图书--->中国图书;
图书---->外国图书
等,而假如这个时候,能在页面的
在asp.net 2.0中,我们可以应用部分的服务端控件来实现了,首先,要添加标记
然后可以在page_load事件中,以如下情势改边其title的内容了,如
Page.Header.Title = 'The current time is: ' & DateTime.Now.ToString()
,也可以简略写成page.title.
然后,我们可以通过这样的措施,将其于sitemap控件联合了,实现方法如下:
Const DEFAULT_UNNAMED_PAGE_TITLE As String = 'Untitled Page'
Const DEFAULT_PAGE_TITLE As String = 'Welcome to my Website!!'
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Set the page's title, if needed
If String.IsNullOrEmpty(Page.Title) OrElse Page.Title = DEFAULT_UNNAMED_PAGE_TITLE Then
If SiteMap.CurrentNode Is Nothing Then
Page.Title = DEFAULT_PAGE_TITLE
Else
Page.Title = GetPageTitleBasedOnSiteNavigation()
'Can also use the following if you'd rather
'Page.Title = GetPageTitleBasedOnSiteNavigationUsingRecursion(SiteMap.CurrentNode)
End If
End If
End Sub
Private Function GetPageTitleBasedOnSiteNavigation() As String
If SiteMap.CurrentNode Is Nothing Then
Throw New ArgumentException('currentNode cannot be Nothing')
End If
'We are visiting a page defined in the site map - build up the page title
'based on the site map node's place in the hierarchy
沒有留言:
張貼留言