Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use OpenId with the ASP MembershipProvider?

I have a ASP.Net 2.0 website that is currently using a custom MembershipProvider and the standard login control. I would like to replace the login control with the one from DotNetOpenId.

I override the ValidateUser which checks the username and password, but I shouldn't need to implement this when using OpenId.

Is it possible to use OpenId and still have the membership provider available to me to so that I can still use it to access the current logged in user?

Or is it the case the there is need for the using provider model anymore?

like image 649
tpower Avatar asked Sep 26 '08 21:09

tpower


1 Answers

There is no inbuilt provider available. But you can always implement your own provider.

Or you can check out this one available in codePlex.

like image 112
Vijesh VP Avatar answered Sep 20 '22 16:09

Vijesh VP