将visible = false设置为asp:BoundField
我有一个 gridview 宽度绑定字段:
<asp:BoundField DataField="Nome" HeaderText="Nome" SortExpression="Nome" />
我想通过 page_load 方法中的条件设置它的可见参数。
有可能吗?
谢谢
i have a gridview width a boundfield:
<asp:BoundField DataField="Nome" HeaderText="Nome" SortExpression="Nome" />
i want set the visible parameter of this by a condition in page_load method.
is possible?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 EnsureChildControls() 后,您将能够迭代 GridViewRows 并使用 FindControl 选取此字段(假设您设置了 ID 并 runat="server")。
After calling EnsureChildControls(), you will be able to iterate over the GridViewRows and use FindControl to pick out this field (assuming you set an ID and runat="server").