Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extending a Custom Membership Provider

I have made a Custom Membership Provider and implemented what methods i need. I now need to add a custom method of my own which deals with the password.

I have added a new method but i am unable to use it anywhere in code. Is it possible to add methods to my custom membership provider or is this done elsewhere?

like image 217
Hesky Avatar asked Apr 21 '11 08:04

Hesky


1 Answers

((YourProviderType)Membership.Provider).YourMethod();
like image 161
abatishchev Avatar answered Sep 29 '22 03:09

abatishchev