ASP.NET 4.0 隐藏字段

发布于 2024-12-14 04:15:36 字数 476 浏览 1 评论 0原文

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

这是我的代码。我收到类似对象引用未设置到对象实例之类的异常。 请帮我。

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

This is my code. I am getting Exception like Object reference not set to an instance of an object.
Please help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魄砕の薆 2024-12-21 04:15:36

最有可能的是您的控件尚未找到,您需要确保找到该控件并且未返回空引用。

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

Most likely it is the your controls have not been found, you need to make sure the control is found and a null reference not returned.

if ((hidCurrentFooterLinks != null) || (hidPreviousFooterLinks != null)) {  // DO SOMETHING   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文