how can i catch the event when a user update a member on the back office, i've tryed using member aftersave, it won't fire, i guess it's only working when creating new members.
i've tryed inherit UmbracoMembershipProvider and override UpdateUser method and set it as the provider in web.config, but it wont fire either.
What does your code for this look like? I'm not a .net/c# guy but I know that there has been some API changes in 4.10, which is might related to what you experience with the aftersave event not being fired.
as i see now the after_save is running after a creation of a member and not after updating a member in the back-office, i just wonder if there is another event i can use. in the end i used after_save only after member creation and its working, but catching the event after updating the member will be useful.
Event for saving member on the back office
how can i catch the event when a user update a member on the back office, i've tryed using member aftersave, it won't fire, i guess it's only working when creating new members.
i've tryed inherit UmbracoMembershipProvider and override UpdateUser method and set it as the provider in web.config, but it wont fire either.
anyone has any idea how can i achive this ?
using umbraco 4.10.1
Hi Eran
What does your code for this look like? I'm not a .net/c# guy but I know that there has been some API changes in 4.10, which is might related to what you experience with the aftersave event not being fired.
Looking forward to hearing from you.
/Jan
as i see now the after_save is running after a creation of a member and not after updating a member in the back-office, i just wonder if there is another event i can use.
in the end i used after_save only after member creation and its working, but catching the event after updating the member will be useful.
is working on a reply...