博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net中MVC多语言包的使用
阅读量:4947 次
发布时间:2019-06-11

本文共 790 字,大约阅读时间需要 2 分钟。

Global.asax.cs文件

protected void Application_AcquireRequestState(object sender, EventArgs e)

{

if (HttpContext.Current.Session != null)

{

if (this.Session["language"] == null string.IsNullOrWhiteSpace(this.Session["language"].ToString()))

{

Session["language"] = "zh-CN";

}

System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(Session["language"].ToString());

System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture(Session["language"].ToString());

}

}

登录页面

if (Session["language"] == null)

{

Session["language"] = "zh-CN";

}

else if (Session["language"].Equals("en-US"))

{

Session["language"] = "zh-CN";

}

else

{

Session["language"] = "en-US";

}

 

转载于:https://www.cnblogs.com/zh1989/p/4193550.html

你可能感兴趣的文章
nmapport状态解析
查看>>
sklearn:Python语言开发的通用机器学习库
查看>>
Python多线程之线程创建和终止
查看>>
【转载】使用元类
查看>>
1.3ionic入门——tabs样式添加测滑栏
查看>>
MySQL—函数大全
查看>>
页面中的meta作用
查看>>
实现如下类之间的继承关系,并编写Music类来测试这些类。
查看>>
二叉树的三种遍历
查看>>
Unity3d基本优化策划
查看>>
php多种排序
查看>>
边工作边刷题:70天一遍leetcode: day 23-4
查看>>
Python-SocketServer模块
查看>>
python面向对象学习(五)多态
查看>>
HTML常用标签及表单标签
查看>>
缓冲区溢出原理及防御(转)
查看>>
HUAS Summer Trainning #3~B
查看>>
mysqldump 数据库备份命令及脚本
查看>>
Atom中设置你的Snippet,atom技巧(二)
查看>>
lightmap工具
查看>>