What is the recommended way to handle different user roles in a C# application?
Posted
by Sergio Tapia
on Stack Overflow
See other posts from Stack Overflow
or by Sergio Tapia
Published on 2010-06-07T17:05:30Z
Indexed on
2010/06/07
17:12 UTC
Read the original article
Hit count: 260
I'm going to make a small application for a business that will be used locally for scanning, and storing documents in a database located on the local machine or on a machine located in the same LAN.
I could create a table called Users with username and password and according to the usertype ID show a form, or another form. But I'm more interested in the recommended approach by seasoned programmers.
Any advice?
© Stack Overflow or respective owner