Asp.net:使用 gridview 和 objectDataSource 进行排序
如何使用 ObjectDataSource 绑定的数据在 gridView 中进行排序?
how I do a sorting in a gridView with data bound by a ObjectDataSource?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里是一个之前已经回答过的问题。
对于实际的排序,您可以调用
您可以使用开关根据通过参数传递到方法中的内容来更改排序依据。所以它看起来更像这样
希望这有帮助! :)
Here is a question that has been previously answered.
For the actual sorting, you would call
You could use a switch to change what to sort on based on what is passed into the method via the args. So it would look a little more like this
Hope this helps! :)
如果对您来说更容易,为什么不尝试从存储过程或查询中对其进行排序。
也许不是最佳解决方案,但可能更容易。
编辑
如果您想使用 gridview 控件以编程方式执行此操作,请查看以下代码:
If is more easy for you, why dont you try to sort it from the store procedure or the query.
Maybe is not the optimun solution but it could be easier.
EDIT
IF you want to do it programattically with the gridview controls, Take a look at this code: