I have the classic scenario when a form is rendered from an action method returning a view.
The view contains some dropdown lists that are prefilled (like calling some repository methods) before the view is rendered and a DTO is passed to the view.
When the form is posted I would like to re-render the same view without getting again the values for the dropdowns similarly to how the textboxes and other form controls preserve their state.
Apparently when posting the form only the selected value in the dropdowns is posted.
What is the best way to do that?