ASP.NET 4.0 HiddenFields

时间:2011-11-08 10:48:54

标签: c# .net asp.net-4.0 hiddenfield

HiddenField hidCurrentFooterLinks = (HiddenField)gvTaxonomy.FindControl("hidCurrentFooterLinks");
hidCurrentFooterLinks.Value = txtFooterLinkCurrentYear.Text;
HiddenField hidPreviousFooterLinks = (HiddenField)gvTaxonomy.FindControl("hidPreviousFooterLinks");
hidPreviousFooterLinks.Value = txtFooterLinkPreviousYear.Text;
txtFooterLinkCurrentYear.Text = "";
txtFooterLinkPreviousYear.Text = "";

这是我的代码。我得到像Object reference not set to an instance of an object这样的例外情况。 请帮帮我。

1 个答案:

答案 0 :(得分:0)

很可能是您的控件未找到,您需要确保找到控件并且不返回空引用。

if ((hidCurrentFooterLinks != null) || (hidPreviousFooterLinks != null)) {  // DO SOMETHING   }