码迷,mamicode.com
首页 > 编程语言 > 详细

asp.net中MVC多语言包的使用

时间:2014-12-30 15:02:41      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

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";

}

 

技术分享

asp.net中MVC多语言包的使用

标签:

原文地址:http://www.cnblogs.com/zh1989/p/4193550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!