使用对象数据源在列表视图中排序
net 用于社交网络的网络应用程序。 我使用的是VS2008和sqlserver 2008[.net 3.5]
在这个网站中我们使用3层架构。我们将业务对象传递给 UI。
我的列表视图与对象数据源绑定。现在我想在listview中实现排序。 谁能建议我使用对象数据源在 ListView 中进行排序的最佳方法
net web application for social networking.
I am using VS2008 and sqlserver 2008[.net 3.5]
In this website we are using 3-tier architecture. We pass businessobject to the UI.
My listview is binded with object data source. Now I want to implement sorting in listview.
Can anyone please suggest me the best method to do sorting in ListView with Object data source
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将参数添加到为您提供数据的业务层的方法。该参数将告诉它如何对集合进行排序。
ObjectDataSource 对象支持属性 设置必须对其进行排序的成员。
Add a parameter to the method of your business layer that gives you the data. This parameter will tell it how to sort the collection.
The ObjectDataSource object support property to set the member on which the sort must be done.