abp的开发20180425
指定默认语言。
mvc5
在Global中的
protected override void Application_BeginRequest(object sender, EventArgs e)
{
var langCookie = Request.Cookies["Abp.Localization.CultureName"];
if (langCookie == null)
{
Response.Cookies.Add(
new HttpCookie("Abp.Localization.CultureName", "zh-CN")
{
Expires = Clock.Now.AddYears(2),
Path = Request.ApplicationPath
});
}
}
core中
core里面,有一个默认的cookies来存储语言特性的。.AspNetCore.Culture的名字。