Posted on 2008-03-12 11:23
玄铁剑 阅读(369)
评论(0) 编辑 收藏 引用 所属分类:
asp.net
配合资源文件,在Master中动态变换语言:
//MasterPage
protected override void FrameworkInitialize()
{
//Profile.Culture==>'en-us' and so on..
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo(Profile.Culture);
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
System.Threading.Thread.CurrentThread.CurrentUICulture = ci;
base.FrameworkInitialize();
}