You can add your own functions to your custom membership provider class.
If your custom membership provider is say MyCustomProvider, you can get a
reference to that by
MyCustomProvider mcp = (MyCustomProvider) Membership.Provider;
You can then call mcp.DoMyCreateUser(...) etc.
> -----Original Message-----
> From: prady [mailto:prady@discussions.microsoft.com]
[quoted text clipped - 17 lines]
> Thanks in advance
> Prady
Phil H - 29 Dec 2007 22:46 GMT
> You can add your own functions to your custom membership provider class.
>
[quoted text clipped - 28 lines]
>
> - Show quoted text -
A custom membership provider has to impement the interface
requirements of a standard membership provider if it is to be used
transparently. If you need to pass more information than is specified
by the standard Membeship.Createuser() method then you will have to
write code for a separate function with the required parameters and
call it explicitly.
Does that make any sense?