c#2.0中動態修改頁面標題

來源:互聯網
上載者:User
動態|頁面

在老外的站上看到解決的好方法,故簡單編譯之:
在一個asp.net 的應用中,經常要動態修改頁面的標題,一個典型的例子就是,在一個頁面導航的控制項中,希望使用者點選哪一個串連,在頁面的title裡就顯示相關的內容,舉個例子,比如一個網站,有如下的網站架構:
有圖書分類,下面再有中國圖書,外國圖書分類,則一般可以用樹形或者asp.net 2.0的新增加的瀏覽列控制項
(sitemap),來實現,比如

圖書--->中國圖書;
圖書---->外國圖書
等,而如果這個時候,能在頁面的<title>部分,也能顯示比如"圖書-->中國圖書"這樣,那就更加直觀明顯了,
在asp.net 2.0中,我們可以使用<head>部分的服務端控制項來實現了,首先,要委任標記
<head runat="server">

然後可以在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

        Dim output As String = String.Empty
        Dim currentNode As SiteMapNode = SiteMap.CurrentNode

        While currentNode IsNot Nothing
            If output.Length > 0 Then
                output = currentNode.Title & " :: " & output
            Else
                output = currentNode.Title
            End If

            currentNode = currentNode.ParentNode
        End While

        Return output
    End Function

在上面的代碼中,首先預定義了兩個常量,然後逐步建立sitemap的結點,一開始結點是null的,然後再調用
GetPageTitleBasedOnSiteNavigation() 這個過程,在每建立一個sitemap的結點時,用字串進行串連,最後返回給page.title即可實現,當然也可以用遞迴實現

 



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.