Development of abp 20180425

Specifies the default language.

mvc5

in 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

Inside the core, there is a default cookie to store language features. .AspNetCore.Culture name.

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324884381&siteId=291194637