ASP.NET Gridview - 存在什么属性来确定网格是否呈现?
当没有数据源分配给我的网格时,它不会渲染,这太棒了!
当数据源为空时,它不会呈现 - 也很棒:-)
我正在实现一些自定义导航,所以我想知道是否有一个属性可以告诉我数据视图是否已呈现?
如果它被渲染,我可以显示我的自定义位,否则我不会。
问题一个简单的答案,但无法弄清楚它是哪个属性
有人帮忙吗?
When there is no DataSource assigned to my grid it doesn't render which is great!
When the datasource is empty it doesn't render - also great :-)
I am implementing some custom navigation so i want to know if there is a property that tells me if the dataview is rendered?
If it is rendered i can show my custom bits otherwise i don't.
Problem an easy answer, but can't figure out which property it is
Anybody help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查一下有多少行可以吗?
Would checking to see how many rows it has be ok?
您还可以使用
EmptyDataTemplate
来处理没有行时发生的情况。You can also use
EmptyDataTemplate
to handle what happens when there are no rows.