Reputation: 101
i am using my own security system (custom authentication, authorization ...)
i just want to send confirmation email after user register how can i do this without membership tables ?
FYI:when i am build my own authorize system i just override AuthorizeCore function like this
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
}
is there any functions like AuthorizeCore to confirm account or change password can override ?
appreciate any help thanks
Upvotes: 0
Views: 78
Reputation: 50728
No attribute can do this; you need to do this within the controller. However, the default security framework does have API methods for this. Since you have your own security, it makes sense to do this in the controller in a custom fashion.
Upvotes: 1