Global.asax.h
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
- #include "stdafx.h"
- using namespace System;
- using namespace System::Web;
- using namespace System::Collections;
- using namespace System::ComponentModel;
- using namespace System::Web::SessionState;
- namespace Converter
- {
- /// <summary>
- /// Summary description for Global.
- /// </summary>
- public __gc class Global : public System::Web::HttpApplication
- {
- protected:
- void Application_Start(Object *sender, EventArgs *e)
- {
- }
-
- void Session_Start(Object *sender, EventArgs *e)
- {
- }
- void Application_BeginRequest(Object *sender, EventArgs *e)
- {
- }
- void Application_EndRequest(Object *sender, EventArgs *e)
- {
- }
- void Session_End(Object *sender, EventArgs *e)
- {
- }
- void Application_End(Object *sender, EventArgs *e)
- {
- }
- };
- }