I've an ASP.NET Core Razor Page application. Two users logged in simultaneously and in a Grid page both users choose same record.
User1 modifies some data and click submit button. User2 modifies data and click submit button.
At this time I would like to show a Pop-up message saying that Another User (ie User1) modified that data. Upon clicking Ok button I would like to rollback the User2's transaction. How to achieve this. Please guide me.
It would be great if I get any sample application or code. Thanks.