Answer Posted / sabari
The Global.asax file is in the root application directory.
While Visual Studio .NET automatically inserts it in all
new ASP.NET projects, it's actually an optional file. It's
okay to delete it?if you aren't using it. The .asax file
extension signals that it's an application file rather than
an ASP.NET file that uses aspx.
The Global.asax file is configured so that any direct HTTP
request (via URL) is rejected automatically, so users
cannot download or view its contents. The ASP.NET page
framework recognizes automatically any changes that are
made to the Global.asax file. The framework reboots the
application, which includes closing all browser sessions,
flushes all state information, and restarts the application
domain.
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
What is inheritance and an how it be used, example with an example?
Define web services in asp.net.
What does uri mean?
To get the values in two different controls to match which control you use it?
What is the use of placeholder control?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
Where viewstate value is stored in asp.net?
Explain why datareader is useful?
How many types of Cookies are available in ASP.NET?
Can you use Web API with ASP.NET Web Form?
Explain About WebService
What is class and object in asp.net?
Can a master page have more than one contentplaceholder?
What are the main advantages of using asp.net?
Explain about Application and Session Events ?