Can anonymous and authenticated profiles coexist together in ASP.NET?

自闭症网瘾萝莉.ら 提交于 2020-01-11 12:23:38

问题


I'm trying to figure out exactly when the event Profile_MigrateAnonymous fires.

My best guess from just tracing through my code is that it fires when it detects BOTH an anonymous membership cookie AND an authenticated membership cookie. Can anyone confirm this? I'm looking for real in depth answer here. Not just it gets called 'when a user logs in'.

Now - why do I care?

I was trying to keep the anonymous profile hanging around after a user had authenticated so that once they log out I'd still be able to tell who they were, and certain settings that may have been set.

The problem I'm seeing is that Profile_MigrateAnonymous is getting fired on EVERY request. Not just when a user has logged in. This makes me believe it to be a bad practice to keep the anonymous cookie hanging around - and that I should always call ClearAnonymousIdentifier();

For instance I have a new store and an old store. I want users that have access to the 'new store' to never be put back on the old store. Obviously - as with most shopping carts you don't need to autenticate to begin a session. Therefore I think the only way is to call 'ClearAnonymousIdentifier' as designed but keep a secondary cookie 'UseNewStore' to track which store they should go to.

is this a good interpretation. Or should I just not care that Profile_MigrateAnonymous is being called all the time?


回答1:


Don't bother with it. There is a simpler way

Migrating Profile Properties During Log On

http://msdn.microsoft.com/en-us/library/taab950e.aspx



来源:https://stackoverflow.com/questions/1895266/can-anonymous-and-authenticated-profiles-coexist-together-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!