渲染时替换 gridview 行
我有一个绑定到 gridview 的数据表,并在 RowDataBound 事件中检查字段的值以确定在 gridview 行中显示的内容。
但是,在某些情况下,当无法计算行中的数据值时,我想显示仅具有跨所有列的单个标签的行。
当 gridview 绑定删除/添加控件时,有没有办法覆盖单行的渲染?
I've got a datatable bound to a gridview and in the RowDataBound event I check the values of the fields to determine what to show in the gridview row.
However, in some cases I want to show a row with just a single label that spans all columns, when the data values in the row can't be calculated.
Is there a way to override the rendering of a single row when a gridview is bound to remove/add controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,RowCreated事件。
Yes, the RowCreated event.