秋天的云

博客园 首页 新随笔 联系 订阅 管理
  10 Posts :: 7 Stories :: 24 Comments :: 0 Trackbacks

公告

当匿名用户登录成为注册用户后,删除原匿名用户profile信息:

Global.asax文件添加Profile_MigrateAnonymous事件:

void Profile_MigrateAnonymous(Object sender, ProfileMigrateEventArgs e)

{

     ....

 

    //删除原匿名用户profile信息

    ProfileManager.DeleteProfile(e.AnonymousId);

 

    //程序清除与会话关联的匿名cookie

    AnonymousIdentificationModule.ClearAnonymousIdentifier();

}

posted on 2006-06-02 15:29 秋天的云 阅读(271) 评论(0) 编辑 收藏