从InitializeCulture访问母版页中的属性可防止创建控件

时间:2013-08-22 15:18:43

标签: c# asp.net

我一直致力于本地化,并希望将语言放入Viewstate以便在用户控件中进行访问。

我有一个我设置的测试项目来显示问题。在用户控件上,我只有一个标签。

如果我没有访问母版页面视图状态(该行被注释掉的地方),一切正常并且标签已创建。

如果我访问viewstate以从viewstate获取语言,我会得到一个找不到对象的错误,该对象将为null。错误是:

对象引用未设置为对象的实例。

变量“culture”确实从Viewstate获取字符串。

如果我注释掉了母版页访问权限,那么就会设置“culture”,一切正常。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Globalization;

namespace TestCulture
{
    public partial class Sample : System.Web.UI.Page
    {
        protected override void InitializeCulture()
        {
            string culture;
            culture = "en-US";
            culture = "es-MX";
            culture = ((TestCulture.Site1)Page.Master).zCulture;

            base.InitializeCulture();
            System.Threading.Thread.CurrentThread.CurrentUICulture = new CultureInfo(culture);
            System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo(culture);
        }

        protected void Page_Load(object sender, EventArgs e)
        {
        }

        protected void Page_PreRender(object sender, EventArgs e)
        {
            lblTestLabel.Text = ((TestCulture.Site1)Page.Master).Name;
        }

    }
} 

主页面是:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace TestCulture
{
    public partial class Site1 : System.Web.UI.MasterPage
    {
        public string zCulture
        {
            get
            {
                if (ViewState["ocCulture"] == null) 
                    ViewState["ocCulture"] = "en-US";
                return (string)ViewState["ocCulture"];
            }
            set { ViewState["ocCulture"] = value; }
        }

        public string Name
        {
            get
            {
                if (ViewState["Name"] == null) 
                    ViewState["Name"] = "Tom";
                return (string)ViewState["Name"];
            }
            set { ViewState["ocCulture"] = value; }
        }

        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
} 

实际上,如果您从“InitializeCulture”访问母版页上的属性,它将不会创建控件。

您可以从Page_Load和Page_Init事件访问属性而不受任何影响。

为什么访问该属性会导致无法创建控件?

谢谢,

汤姆

1 个答案:

答案 0 :(得分:0)

  

对象引用未设置为对象的实例。

您引用null。您返回“en-US”或String.null。

if (ViewState["ocCulture"] == null) 
   ViewState["ocCulture"] = "en-US";
return (string)ViewState["ocCulture"];

试试这个:

if (ViewState["ocCulture"] == null)
        {
            ViewState["ocCulture"] = "en-US";
        }
        else 
       { 
          ViewState["ocCulture"] = "";
       }
return (string)ViewState["ocCulture"];