I'm new to MVC, and I'm having a hard time with a task that would be pretty easy with classic ASP.net.
I have a gridView that has a checkbox in each row, and I want a functionality where the user ticks the checkboxes of the rows he wants, clicks some button on the page and the selected rows would be sent to the server.
In normal ASP, the whole page is sent so its easy to check the gridView rows and the checkbox in each row, but in MVC the whole point is the Controller class not knowing about the details of the GUI, so how do I implement such a thing in MVC?