Hi All,
This is the ASP.net 3.5 web application.
Here is an objective we want to achieve.
Objective - To log Last logon Time for the user.
The logic requires accessing certain business layer components and some of the Data layer methods. User can get into an application from any page. To be more precise - an objective is to log the last logon time of the user no matter what page user may land on to access an application.
Is that going to be the good design practice to implement this logic in session_start event?
If so, will accessing business layer and data access layer components in session_start prove to be a valid design scenario?
Please guide.
This is the ASP.net 3.5 web application.
Here is an objective we want to achieve.
Objective - To log Last logon Time for the user.
The logic requires accessing certain business layer components and some of the Data layer methods. User can get into an application from any page. To be more precise - an objective is to log the last logon time of the user no matter what page user may land on to access an application.
Is that going to be the good design practice to implement this logic in session_start event?
If so, will accessing business layer and data access layer components in session_start prove to be a valid design scenario?
Please guide.
Comment