Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
Can you give an example of what might be best suited to place in the Application_Start and Session_Start subroutines?
✍: Guest
The Application_Start event is guaranteed to occur only once throughout the lifetime of the application. It’s a good place to initialize global variables. For example, you might want to retrieve a list of products from a database table and place the list in application state or the Cache object. SessionStateModule exposes both Session_Start and Session_End events.
2014-01-21, 1661👍, 0💬
Popular Posts:
How to create a thread in a program? You have two ways to do so. First, making your class "extends" ...
What is page thrashing? Some operating systems (such as UNIX or Windows in enhanced mode) use virtua...
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...
If we have two version of same assembly in GAC how do we make a choice ? OK first let’s try to under...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...