⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 global.asax.h

📁 不好意思
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -