I have two pages with two grids,
in my first page I have 10 editable rows. and I have one next button.
I need to get all these 10 rows edited values to the next page to store the edited values to the other variable ID’s in the next page. what is the best way to use this type of situations
Thanks
Have your editable rows inside of a
<form>in the first viewthen send each row as an instance of a view model type with properties that match the data for each row
Finally post a collection of those types to the controller action. e.g.