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 a 307 redirect?
Define static member?
What is cookies cache and session?
Is viewstate secure?
What is inproc mode in session?
What is the use of session state and application state and difference between them?
Is session server side or client side?
What is the difference between viewstate and hidden field in asp.net?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?
Can I combine classic asp and asp.net pages?
Define the term Scavenging in Caching?
What is difference between cookies and cache?
Which browsers support the xmlhttprequest object?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
Is asp.net 64-bit enabled? How?