Set selected value in SelectList after instantiation
I think you are fighting the framework. The data going into your views should be created at the Last Possible Minute (LPM). Thinking this way, a SelectList is a type to feed the DropDownList HTML helper. It is NOT a place to store data while you decide how to process it. A better solution would … Read more