我正在使用C#ASP.NET VS2010。
我有一个包含选择命令按钮的GridView。
此选择按钮指向选择时激活的C#页面后面的代码中的操作。
执行所有必需的操作后,我想清除选择。
例如:如果ID =“gvInfo”我想使用像gvInfo.Deselect();
这样的东西我该怎么做?
答案 0 :(得分:37)
试试这个:
Gridview has a property called SelectedIndex.
If you want to unselect any rows then set this property to -1.
答案 1 :(得分:7)
感谢您提出问题Different111222;这个问题对我有帮助。
gvInfo.SelectedIndex = -1;
希望这有帮助!
答案 2 :(得分:5)
如果有其他人像我一样,却无法找到SelectedIndex
:
gridView1.ClearSelection();
答案 3 :(得分:0)
我是这样做的,而且效果很好。
gridViewName.GetSelectionModel().ClearSelection();
我希望它可以为某人工作。