英文:
GridView Column sort in descending
问题
欢迎大家
我有一个简单的代码,用于在 GridView 中显示值
当排序时,结果是升序的
我想要相反的顺序
我使用了这段代码
但我想要反转顺序
GridView1.DataSource = dt;
dt.DefaultView.Sort = "MYPoints";
GridView1.DataSource = dt.DefaultView;
GridView1.DataBind();
谢谢帮助
英文:
welcome all
I have a simple code that displays the values in a GridView
When sorting, the result is ascending
I want the opposite
I used this code
But I want to reverse the order
GridView1.DataSource = dt;
dt.DefaultView.Sort = "MYPoints";
GridView1.DataSource = dt.DefaultView;
GridView1.DataBind();
Thanks for help
答案1
得分: 0
这应该可以工作:
dt.DefaultView.Sort = "MYPoints DESC";
英文:
this should work:
dt.DefaultView.Sort = "MYPoints DESC";
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论