I tested the way to make a global application with Asp.net 2.0
Share it now and looking forward to receiving your feedback and directions.
1、Create the resource file in Resources folder 
Japanese(SharedResource.ja.resx)
English(SharedResource.en-US.resx)
2、In Global.asax,
void Application_BeginRequest(object sender, EventArgs e)
{
if (Request.Params["Language"] != null)
{
if (Request.Params["Language"].ToString() == "jp")
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("ja");
}
else
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");
}
}
else
{
Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture(Request.UserLanguages[0]);
}
}
you can see I used a parameter [Language] to swith to different language, certainly we can change the paremeter before
we post to server in aspx.
3、In aspx page_load
this.lbTop.Text = (string)GetAppResourceObject("SharedResource", "Top");
this.lbLogOff.Text = (string)GetAppResourceObject("SharedResource", "LogOff");
Use the method [GetAppResourceObject] we can get the string from resource file.
博主分享了用Asp.net 2.0创建全局应用的方法。先在Resources文件夹创建资源文件,如日语和英语的;在Global.asax中用[Language]参数切换语言,也可在aspx提交到服务器前更改;在aspx page_load中用[GetAppResourceObject]方法从资源文件获取字符串。
5414

被折叠的 条评论
为什么被折叠?



