具有动态列数的中继器
具有动态列的中继器。
我必须根据设置显示列。有时我想显示姓名、年龄、性别、薪水。所以存储过程会返回
Name Age Sex Salary
-----------------------
Rauf 23 M 10
Amal 25 M 10
有时我只需要显示姓名和薪水。所以数据将是
Name Salary
------------
Rauf 10
Amal 10
如何设计一个Repeater
控件来显示这种类型的具有动态列的表?
Repeater with dynamic columns.
I have to show columns based of settings. Sometimes I want to show Name, Age, Sex, Salary. So the stored procedure will return
Name Age Sex Salary
-----------------------
Rauf 23 M 10
Amal 25 M 10
Sometimes I need to show Name and Salary only. So the data will be
Name Salary
------------
Rauf 10
Amal 10
How can I design a Repeater
control to show this type of tables having dynamic columns ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非性能真的很重要,否则我会采取简单的方法并使用固定列(所有列),并设置visible=false以防您不需要它们。
Unless perfomance i really crucial, I would take the easy way and use fixed columns (all of them) and just set visible=false in case you do not need them.