List of OpenID Search URLs

I am using DotNetOpenAuth in my Asp.Net application.

I want to create a login page where the user can choose among the most common OpenID providers, such as google, yahoo ...

I would like to have image buttons such as SO login.

1) Is there a best practice to achieve this? (As a free / open asp.net control)

2) Do you have a list of generic discovery URLs?

Update

For information only, I found this too:

+4
source share
2 answers

I believe this is what you are looking for: http://code.google.com/p/openid-selector/

+2
source

You can check out this page , which shows how to perform OpenID authentication with ASP.NET/MVC. If you are not using MVC, check out this page (see the Cautionary Comment below) , which shows how to do this in C # / ASP.NET without MVC.

Also check out StackApps and Stacky to help you implement some of the Stack Overflow elements in .NET.

Finally, if you need a vendor list / discovery list, select from this list!

+2
source

All Articles