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

📄 global.asax.h

📁 MFC程序开发参考大全 【明日科技】宋坤 刘锐宁 李伟明 【丛 书 名】 软件工程师典藏 【出 版 社】 人民邮电出版社 本书详细介绍了MFC框架中所有常用类及控件的应用
💻 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 WebServerExample {
 
    /// <summary>
    ///    全局的摘要描述。
    /// </summary>
	public ref 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 + -