Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网格视图,我想从中提取页脚中的数据。
我有一个问题,因为页脚并不总是存在(例如,如果 gridview 为空)。
当页脚本身不存在时,如何针对标签测试 null ?
一个简单的 if !null 不起作用,因为我得到“对象引用未设置为对象的实例”。错误。
if (GridView1.FooterRow.FindControl("TotalLbl") != null) //do stuff
任何指针?
您需要先检查是否GridView1.FooterRow不为空。所以它看起来像这样:if(GridView1.FooterRow != null && GridView1.FooterRow.FindControl("TotalLbl") != null)
GridView1.FooterRow
if(GridView1.FooterRow != null && GridView1.FooterRow.FindControl("TotalLbl") != null)