asp.net中英文等多语言网站切换

时间:2012-07-02    点击:1191   
在资源管理器中新建App_GlobalResources, 新建resx资源文件,lang.resx   lang.en.resx    lang.zh-cn.resx.

同一个控件在不同语言中值不一样,分别在resx中写入控件名称:值;

在global.asx中

    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)
        { }
    }

页面default.aspx

或者 button1.Text = Resources.lang.button1.ToString();

源文件下载

asp阳历转农历
setTimeout和setInterval的区别
拍卖倒计时
div+css实现表格对角线
一款不错的网页换肤特效
> 返回     
地址:上海市普陀区胶州路941号长久商务中心 电话: QQ:
© Copyright 2012 上海网络 All Rights Reserved