We have a web application with multi user admin panel built using ASP.NET MVC. Since multiple users access same page at the same time, only the last edited and saved user's data will be updated to the database. This creates problem to the other users.
- Is there any option to disallow concurrent access of users to the same page at any time? If a user is already working on a page, the system should alert other user who is trying to access the same page that "Someone else is working on this page. Please try after some time."
- Is there any facility for this issue provided by the MVC framework itself or the .NET Authentication?
- Otherwise, any suitable logical solution is also fine.
Thanks in advance...