My index action for the controller accepts the page parameter as follows:
/Organizations/Index?page=5
Used to limit the number of displayed objects. If they want to "edit" one of these objects after they are completed, I would like to return with the same values ββas before they started editing (for example, to be on the same "page" of the list).
My edit url is as follows:
/Organizations/Edit/487
How to save the value of the original page?
Thank!
source
share