asp.net – 什么是global.asax用于?

前端之家收集整理的这篇文章主要介绍了asp.net – 什么是global.asax用于?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ASP.NET中global.asax的用途是什么?

解决方法

The Global.asax file,also known as the ASP.NET application file,is an optional file that contains code for responding to application-level and session-level events raised by ASP.NET or by HTTP modules. The Global.asax file resides in the root directory of an ASP.NET application. At run time,Global.asax is parsed and compiled into a dynamically generated .NET Framework class derived from the HttpApplication base class. ASP.NET is configured so that any direct URL request for the Global.asax file is automatically rejected; external users cannot download or view the code in it.
The Global.asax file is optional. You create it only if you want to handle application or session events.

(MSDN http://msdn.microsoft.com/en-us/library/2027ewzw%28v=vs.100%29.aspx)

原文链接:https://www.f2er.com/aspnet/249775.html

猜你在找的asp.Net相关文章