C# 中的对象实例
为什么我收到“对象引用未设置为对象的实例”
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大概是因为
GetTabControl()
返回null
。 如果没有更多代码,我们无法说出原因。Presumably because
GetTabControl()
is returningnull
. We can't tell why without more code though.GetTabControl()
必须返回空引用。GetTabControl()
must be returning a null reference.