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

📄 global.asax

📁 asp.net 2.0 WebPart应用. 使用Web部件创建模块化的Web门户应用; 个人化特性和自定义特性; 将自定义用户控件作为Web部件使用; 创建一个个人化特性的提供程序;
💻 ASAX
字号:
<%@ Application Language="C#" %>
<%@ Import Namespace="System.Web.Security" %>

<script RunAt="server">

    void Application_Start(Object sender, EventArgs e)
    {
        // always create bob and alice as users if they are not present
        // so you can login and we can avoid dealing with admin
        //
        MembershipCreateStatus status;
        if (Membership.FindUsersByName("bob").Count == 0)
            Membership.CreateUser("bob", "pass@word1", "bob@wingtip.com", "no question", "no answer", true, out status);
        if (Membership.FindUsersByName("alice").Count == 0)
            Membership.CreateUser("alice", "pass@word1", "alice@wingtip.com", "no question", "no answer", true, out status);
    }

    void Application_End(Object sender, EventArgs e)
    {
        //  Code that runs on application shutdown

    }

    void Application_Error(Object sender, EventArgs e)
    {
        // Code that runs when an unhandled error occurs

    }

    void Session_Start(Object sender, EventArgs e)
    {
        // Code that runs when a new session is started

    }

    void Session_End(Object sender, EventArgs e)
    {
        // Code that runs when a session ends. 
        // Note: The Session_End event is raised only when the sessionstate mode
        // is set to InProc in the Web.config file. If session mode is set to StateServer 
        // or SQLServer, the event is not raised.

    }
       
</script>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -