I am writing an ASP application with an SQL database. Basically, I need to know if there's a way for the users to check a file in/out? . . . more specifically, a way to ensure it's checked back in even if the user who last had it checked out didn't check it back in.
For example:
User(1) wishes to check out Record(1) and make changes. While the record is checked out, nobody else is able to make changes. Upon completion, User(1) just closes their browser without checking the file back in.
User(2) wishes to check out Record(1), but it's already been checked out by User(1) - who is done with it.
For example:
User(1) wishes to check out Record(1) and make changes. While the record is checked out, nobody else is able to make changes. Upon completion, User(1) just closes their browser without checking the file back in.
User(2) wishes to check out Record(1), but it's already been checked out by User(1) - who is done with it.