ASP.NET 2.0 Language Swithcer and Theme Swicher 多語言轉換和多樣式主題轉換

來源:互聯網
上載者:User
在ASP.NET 2.0 中提供多語言轉換和多樣式主題轉換功能,兩種實現形式比較類似,所以放在一起說明一下。1. Language switcher 多語言轉換在Quick Start Tutorial 中,介紹了如何儲存和應用使用者選擇的語言。一般是用一個DropDownList展示支援的語言,供使用者選擇,通常是放在masterpage 裡面,將使用者選擇的語言儲存起來 這裡用了ASP.NET 2.0的Profile,當然也可以存在cookie session 或者querystring裡。在頁面裡重寫InitializeCulture 方法,使用使用者之前選擇的語言。因為設定語言的操作 (這裡是SelectedIndexChanged事件)發生在InitializeCulture 時間後面,所以在設定作業完成後為了使的當前頁面也馬上生效,需要做個重轉向,以從新載入本頁面,觸發InitializeCulture 事件。下面使quickstart中的部分代碼,注意紅色部分。因為有的頁面地址後面可能還存在queystring,所以個人覺得紅色代碼部分最好用Response.Redirect(Request.Url.PathAndQuery);代替。    protected void DropDownLanguage_SelectedIndexChanged(object sender, EventArgs e)
    {
        string SelectedLanguage = DropDownLanguage.SelectedValue.ToString();
        //Save selected user language in profile
        Profile.SetPropertyValue("PreferredCulture", SelectedLanguage);

        //Force re-initialization of the page to fire InitializeCulture()
        Response.Redirect(Request.Url.LocalPath);
    }    protected override void InitializeCulture()
    {
        // override virtual method InitializeCulture() to check if profile contains a user language setting
        string UserCulture = Profile.GetPropertyValue("PreferredCulture").ToString();
        if ( UserCulture != "")
        {
            // there is a user language setting in the profile: switch to it
            Thread.CurrentThread.CurrentUICulture = new CultureInfo(UserCulture);
            Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(UserCulture);
        }
    }為了減少代碼的重複,一般會自訂一個customer base page類,使它繼承Page類,然後在自訂的頁基類中重新InitializeCulture方法。最後把你的每個頁面繼承自你的自訂頁面基類。這樣你就不需要每個頁面都重寫InitializeCulture方法了。 但是上面這個方法還是不是很爽,因為每添加一個頁面都要去修改後置代碼,來繼承自訂頁基類。我們注意到,在InitializeCulture方法中實際上只是修改了當前線程的Culture和UICulture。那麼可不可以在一個全域的事件中,比如Application的某個事件,來修改這兩個屬性呢?很早以前我這麼試過,在Application的BeginRequest事件觸發時來實現InitializeCulture 的細節,類似於下面代碼:    void Application_BeginRequest(object sender, EventArgs e)
    {
        string lang = string.Empty;//default to the invariant culture
        lang = Profile.PreferredCulture;
        if (string.IsNullOrEmpty(lang))
        {
            lang = string.Empty;
        }
        Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(lang);
        Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang);
    }

注意紅色部分應用其他方式取代,因為在beginrequest觸發階段,profile對象還沒有被asp.net建立。可以用cookies取代。我記得當時這麼做後,語言設定後並不起作用,當時認為在全域事件中處理,可能到後來還是會被覆蓋掉,所以可能不行。所以當時還是用了 InitializeCulture方法。今天在asp.net論壇裡看到有人如此實現了,

void Application_BeginRequest(Object sender, EventArgs e){
      string lang = string.Empty;//default to the invariant culture
      HttpCookie cookie = Request.Cookies["DropDownName"];

      if (cookie != null && cookie.Value != null)
         lang = Request.Form[cookie.Value];

      Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(lang);
      Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang);
}

所以覺得當時可能哪裡沒有設定好,於是又試了一次,原來是頁面頭指令<%@ Page UICulture="auto" Culture="auto" %>的原因,如果在頁面中設定了UICulture和Culture後,它們就會覆蓋掉在全域中的設定。去掉之後,全域設定起作用了。看來頁面中的culture的設定會覆蓋全域的設定,而頁面中InitializeCulture方法(確切說是一切支援該方法的控制項)的設定會覆蓋頁面的設定。其實在Page類中InitializeCulture方法的預設實現是空的,因此再將頁面頭指令 UICulture="auto" Culture="auto" 去掉後,Global中的設定就起作用了。另外,如果很想使用Profile(像我一樣)來儲存使用者的選擇,那就不能在beginrequest階段來處理了,我是在PreRequestHandlerExecute事件觸發時處理:

    void Application_PreRequestHandlerExecute(object sender, EventArgs e)
    {
        string lang = string.Empty;//default to the invariant culture
   
        lang = Profile.PreferredCulture;
        if (string.IsNullOrEmpty(lang))
        {
            lang = string.Empty;
        }
        Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(lang);
        Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(lang);
       }這個時候Profile已經被建立了,所以可以使用了。2. 多樣式主題轉換 Theme switcher這篇文章講了Theme的切換,覺得形式上和語言的切換很類似。他使用了HttpModule,我覺得直接放在Global.asax檔案裡對應的事件處理髮放下就可以了,說到底都是一樣的。他的儲存採用了cookie,我還時覺得用Profile好,既然提供了就用唄,Profile應該是有緩衝的吧,所以效能應該不是問題。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.