GridView 中的排序 + ASP.net
我应该怎么做才能在网格视图中执行排序?
请帮忙
What should I do to perform the sorting in grid view?
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我应该怎么做才能在网格视图中执行排序?
请帮忙
What should I do to perform the sorting in grid view?
Please help
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以实现如下代码:
使用此代码,您的 GridView 定义应为:
You can implement code like the following:
With this code, your GridView definition should read:
不确定您是否已经在后面的代码中添加了该事件。
您为 GridView 设置了
AllowSorting="true"
,因此您需要有其排序事件的事件处理程序。
Not sure if you have already added the event or not in your code behind.
You have
AllowSorting="true"
set for the GridView and therefore you need tohave event handler for its Sorting event.