Saved Bookmarks
| 1. |
Can You Give An Example Of What Might Be Best Suited To Place In The Application_start And Session_start Subroutines? |
|
Answer» In the Application_Start event you COULD store the DATA, which is used throughout the life time of an application for example application name, where as Session_Start could be used to store the information, which is required for that SESSION of the application SAY for example user ID or user name. In the Application_Start event you could store the data, which is used throughout the life time of an application for example application name, where as Session_Start could be used to store the information, which is required for that session of the application say for example user id or user name. |
|