【发布时间】:2013-03-06 16:11:27
【问题描述】:
Web.config
<profile>
<properties>
<add name="Language" />
</properties>
</profile>
默认.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
Profile.Language = "fr";
string strCultur = Profile.Language;
Page.Culture = strCultur;
Page.UICulture = strCultur;
lblLabel.Text = GetLocalResourceObject("lblLabelResource1").ToString();
}
App_LocaleResource:
- Default.aspx.resx
- Default.aspx.fr.resx
这是我的错误:
Object reference not set to an instance of an object.
我想用法语写什么?
【问题讨论】:
-
您的代码中是否存在未初始化的对象“null”?如果是,是否可以指定哪个对象 == null?
标签: c# asp.net culture uiculture