I don’t want to repeat the form elements if possible.
The actual form elements for Create/Update/Show are pretty much the exact same.
Except for the ‘Show’ action the form elements shouldnt’ be editable.
But for update/create the form elements are the exact same.
Is it possible to create a single view page for this?
(MVC2)
On the view level I’d apply the Single Responsibility Principle, i.e. have one separate view for every action.
But you can include the same form into multiple views if you extract it as a Partial View.