I need to persist the inclusions, changes, and deletions that users make on the system, every single move the user makes, so I created a Id
in the tables of my BD to know which user is writing the data.
Id
of the user in BD , this caused several problems because IIS and sessions clean
So I decided to use FormsAuthenticationTicket
since I can use role in user_data
, and login , but I can not assign ID
then I created a Select in the DAO that returns the ID
of my filter user in the login_name
that is unique. But I realized that it slowed down as the Session , for obvious reasons.