c# 匿名用戶登錄以後的事件處理

為了解決匿名用戶登錄成功以後,執行一些操作。在petshop有實現

1.在web.config中 加入 <anonymousIdentification enabled="true" />

表示激發Profile_MigrateAnonymous事件

2.在Global.asax中定義事件

      void Profile_MigrateAnonymous(Object sender, ProfileMigrateEventArgs e) { // 获取匿名用户资料
            
        }

其中: e.AnonymousID為匿名用戶登錄的id

 var currentUser = HttpContext.Current.User;為登錄的用戶名

你可能感兴趣的:(C#)