C# 中的对象实例

发布于 2024-07-16 05:49:57 字数 297 浏览 6 评论 0原文

为什么我收到“对象引用未设置为对象的实例”

protected void GetData()
{
    ...

    id = this.GetTabControl().ID; //<---------here
}

...

protected ASPxPageControl GetTabControl()
{
    return (ASPxPageControl)this.FindControl("DetailTab");
}

---------我假设 FindControl 不起作用。

Why do I get "Object Reference Not Set to Instance of an Object"

protected void GetData()
{
    ...

    id = this.GetTabControl().ID; //<---------here
}

...

protected ASPxPageControl GetTabControl()
{
    return (ASPxPageControl)this.FindControl("DetailTab");
}

---------I assume the FindControl is not working.

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

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

发布评论

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

评论(2

一个人的旅程 2024-07-23 05:49:57

大概是因为 GetTabControl() 返回 null。 如果没有更多代码,我们无法说出原因。

Presumably because GetTabControl() is returning null. We can't tell why without more code though.

む无字情书 2024-07-23 05:49:57

GetTabControl() 必须返回空引用。

GetTabControl() must be returning a null reference.

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