Global.asax.h
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. using namespace System;
  3. using namespace System::Web;
  4. using namespace System::Collections;
  5. using namespace System::ComponentModel;
  6. using namespace System::Web::SessionState;
  7. namespace Converter 
  8. {
  9.     /// <summary>
  10.     ///    Summary description for Global.
  11.     /// </summary>
  12. public __gc class Global : public System::Web::HttpApplication
  13.     {
  14. protected:
  15. void Application_Start(Object *sender, EventArgs *e)
  16.         {
  17.         }
  18.  
  19. void Session_Start(Object *sender, EventArgs *e)
  20.         {
  21.         }
  22.         void Application_BeginRequest(Object *sender, EventArgs *e)
  23.         {
  24.         }
  25. void Application_EndRequest(Object *sender, EventArgs *e)
  26.         {
  27.         }
  28.         void Session_End(Object *sender, EventArgs *e)
  29.         {
  30.         }
  31.         void Application_End(Object *sender, EventArgs *e)
  32.         {
  33.         }
  34.     };
  35. }