I have a gridview where I can select multiple rows by pressing a control key. Is it possible to achieve the same without pressing a control key.
You need to subscribe to mouse click event and select the row programmatically by setting Selected property to true.
Keep in mind that ff the row is already selected you need to set it to false so that the user is able to deselect the row.