I'll need to develop a simple system (in it's essence):
We'll have a bunch of users, the users will have their demands. Each user will create a demand and will specify what user is responsible for the demand. When the demand sent is completed, the user that received the demand will notify this to the one who created it. Basically, it's it.
So, for a better understanding, lets pretend there are two users (A and B):
- A will create a demand for B;
- At the moment that A clicks the button to create the demand, B receives it right in his screen (without posting back the page or loading from DB in a time interval);
- Then, B will see A's demand, will work at it and, when finished, will notify A that the demand is completed.
Is there any way to do this without MVC? If so, what's the name of the plugin, method or any other technology that could be used?