asp.net gridview AjaxControl工具包
我可以使用 AjaxControlToolkit 检查 ASP.NET GridView 是否为空吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以使用 AjaxControlToolkit 检查 ASP.NET GridView 是否为空吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
空的 GridView 控件仍会呈现其EmptyDataTemplate(或其 < a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.emptydatatext.aspx" rel="nofollow">EmptyDataText),这样您就可以不仅仅是检查其关联的
元素是否为空。
您可能想要指定一个自定义
EmptyDataTemplate
来呈现具有已知 id 的元素,然后使用 $get() 在客户端检查该元素是否存在。您还可以创建 扩展程序” .gridviewrowcollection.count.aspx" rel="nofollow">Rows.Count 属性使用 ExtenderControlProperty。
An empty GridView control still renders its EmptyDataTemplate (or its EmptyDataText), so you can't just check if its associated
<table>
element is empty.You might want to specify a custom
EmptyDataTemplate
that renders an element with a well-known id, then use $get() on the client-side to check if that element exists.You can also create an extender on the
GridView
that passes its Rows.Count property to the client side using an ExtenderControlProperty.