I am doing what would take me less that 2hours to do in old ASP.Net Web Forms but has left me stumped in how to implement in ASP.Net MVC.
Problem: I am trying to put together a really basic admin site about musicians. a musician has a associated picture of them, then some details like name, age, home town alongside the profile pic. really basic...
when a admin user creates a muscian, the create view has a file upload, and onchange of the file upload, a preview image should appear. the create page also has the form fields for the other inputs.
In the details view, the musician's profile picture should appear alongside the details.
when in edit mode, again, the exsting image should appear, and if the user chooses to change the picture, the picture again will change there on the spot, without reloading the page.
This seems increadibly easy, but i am really struggling to see how the ASP.Net MVC architecture makes this possible without a great deal of work.
Thanks in advance.