ASP.NET Gridview - 存在什么属性来确定网格是否呈现?

发布于 2024-10-03 04:04:05 字数 194 浏览 8 评论 0原文

当没有数据源分配给我的网格时,它不会渲染,这太棒了!

当数据源为空时,它不会呈现 - 也很棒:-)

我正在实现一些自定义导航,所以我想知道是否有一个属性可以告诉我数据视图是否已呈现?

如果它被渲染,我可以显示我的自定义位,否则我不会。

问题一个简单的答案,但无法弄清楚它是哪个属性

有人帮忙吗?

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 技术交流群。

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

发布评论

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

评论(2

夜空下最亮的亮点 2024-10-10 04:04:05

检查一下有多少行可以吗?

if (grid.Rows.Count > 0)...

Would checking to see how many rows it has be ok?

if (grid.Rows.Count > 0)...
粉红×色少女 2024-10-10 04:04:05

您还可以使用 EmptyDataTemplate 来处理没有行时发生的情况。

You can also use EmptyDataTemplate to handle what happens when there are no rows.

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