Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# ASP.NET VS2010 を使用しています。
選択コマンド ボタンを含む GridView があります。
この選択ボタンは、選択時にアクティブ化されるコード ビハインド C# ページのアクションを指します。
必要なアクションをすべて実行したら、選択を解除したいと思います。
例: ID="gvInfo" の場合、gvInfo.Deselect(); のようなものを使用したいと思います。
それ、どうやったら出来るの?
これを試して:
Gridview has a property called SelectedIndex. If you want to unselect any rows then set this property to -1.
ご質問ありがとうございます Different111222; この質問は私を助けました。
gvInfo.SelectedIndex = -1;
お役に立てれば!