Choose Membership Provider at Run-time

F

FerrisUML

I have two membership providers listed in my web.config, one for SQL
and the other for AD. How do I switch between them at run-time so
that my login page can validate against either source?
 
C

Cowboy \(Gregory A. Beamer\)

You will have to explicitly name the provider name:

Membership.Providers[providerName].Method();
Example (Update User):

//Default
Membership.UpdateUser(name);

//Explicit
Membership.Providers[providerName].UpdateUser(user.MembershipUser);



--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************************************************
| Think outside the box!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top