asp.net 2.0多語言網站解決方案

來源:互聯網
上載者:User

首先在App_GlobalResources建立resx資源檔。如:

不同語言的resx中項目應該具有相同的名稱:

中文資源項

英文資源項

完了以後就可以使用這些名值對了,

複製代碼 代碼如下:<asp:Literal ID="Literal1" runat="server" Text="<%$ Resources:lang,userinfo%>" />

或者 複製代碼 代碼如下:<%=Resources.lang.userinfo%>

至此你可以更換瀏覽器的語言喜好設定來看看效果了。

接下去的問題是怎麼通過程式本身的方式來更換語言項。

1. 可以往web.config中增加<globalization culture="en-US" uiCulture="en-US"/>來改變程式預設使用的語言項。

2.可以往global全域應用程式中增加如下代碼

複製代碼 代碼如下:void Application_BeginRequest(Object sender, EventArgs e)
{
try
{
if (Request.Cookies["lang"] != null)
{
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(Request.Cookies["lang"].Value.ToString());
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(Request.Cookies["lang"].Value.ToString());
}
}
catch (Exception)
{ }
}

即可通過設定變換cookie值來達到即時轉換語言的目的,輕鬆的實現了程式的多語言。

下載測試:Global.rar (8.36 kb)

相關文章

聯繫我們

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