global.asax.h
来自「不好意思」· C头文件 代码 · 共 50 行
H
50 行
#include "stdafx.h"
using namespace System;
using namespace System::Web;
using namespace System::Collections;
using namespace System::ComponentModel;
using namespace System::Web::SessionState;
namespace Ex34d
{
/// <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)
{
}
};
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?