Reputation: 15545
Hi I am having the asp.net MVC site. I want to implement Single sign on on my site using DotNetOpenAuth. I have downloaded its library from here But could not understand how to start implementation. I tried Jenrain also, infact I was able to logging in by jenrain , but its C# class not providing me the logged in user information to start the session and all...So i came across at dotnetopenauth but not getting right direction.
Upvotes: 2
Views: 1453
Reputation: 24522
One way is to implement OpenID using the DotNetOpenAuth library and create a one-to-many relationship between your User
table and a newly created User_OpenID
table.
Scot Hanselman has a good basic article or try a more in depth overview
Upvotes: 1