Can you give an example of what might be best suited to
place in the Application_Start and Session_Start subroutines?
Answers were Sorted based on User's Feedback
Answer / sulochana singh
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.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramgopal reddy
This is where you can set the specific variables for the
Application and Session objects.
Is This Answer Correct ? | 1 Yes | 6 No |
Can we use http handlers to upload a file in asp.net?
What is different authentication mechanisms used in ASP.NET?
What is the differances between a abstract calss and interface
how to use web services with code?(with example code)
difference between Trace and Debug ?
2 Answers Accenture, HCL, Patni,
What is the base class of .NET?
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
How to handle errors in Web API?
What are sql joins?
Define application state variable and session state variable?
What ASP.NET object encapsulates the state of the client and the browser? a) The Session object b) The Application object c) The Response object d) The Request object e) The Server object
7 Answers Bunzl Vending, Syntax Softtech,
how can i inharit multiple classes?