I made a desktop-application with WPF which used WPF's mighty DataBinding to update the UI synchroniously with the model. It manages files of folders, whereas the changes made to these files have to be shown in the UI.
Now I want to realise this as an ASP.Net-MVC Website with huge Backend: The problem I am basically meeting here is that in MVC, the User can only manipulate the Model (by using the View which routes to the corresponding controller etc...), and the model can not manipulate the View.
For example I want to show progress-bars which need to be synchroniously updated with the corresponding model. Is ASP.Net MVC the wrong direction, or is even a Web-Application (a Website with huge Backend) the wrong direction?
Greets, me.