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

📄 global.asax

📁 ASP.NET2.0(C#篇)经典教程的源码...本源码很好的实现了购物车....编码规范和类的设计具有很好的借鉴性!
💻 ASAX
字号:
<%@ Application Language="C#" %>
<%@ Import Namespace="System.Web.Profile" %>

<script runat="server">

    void Application_Start(object sender, EventArgs e) 
    {
        // Code that runs on application startup

    }
    
    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

        Exception ex = Server.GetLastError();

        Tools.Log("An unhandled error was caught by Application_Error", ex);
    }

    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.

    }
       
    void Profile_OnMigrateAnonymous(object sender, ProfileMigrateEventArgs e)
    {
        // get the profile for the anonymous user
        ProfileCommon anonProfile = Profile.GetProfile(e.AnonymousID);

        // if they have a shopping cart, then migrate that to the authenticated user
        if (anonProfile.Cart != null)
        {
            if (Profile.Cart == null)
                Profile.Cart = new Wrox.Commerce.ShoppingCart();
            
            Profile.Cart.Items.AddRange(anonProfile.Cart.Items);
            
            anonProfile.Cart = null;
        }

        ProfileManager.DeleteProfile(e.AnonymousID);
        AnonymousIdentificationModule.ClearAnonymousIdentifier();
    }
  
</script>

⌨️ 快捷键说明

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