vote up 14 vote down star
15

I am starting to build a new web app that will require user accounts. Now that I have an OpenId that I am using for this site I thought it would be cool if I could use OpenId for authentication in my app. Are there any good tutorials on how to integrate OpenId with an ASP.NET site?

flag

7 Answers

vote up 13 vote down check

See Scott Hanselman's post on using DotNetOpenID in ASP.NET. Andrew Arnott's blog is full of samples on using DotNetOpenID with ASP.NET, including ASP.NET MVC.

I recently hooked up DotNetOpenID for the Subtext 2.0 release. It went really smoothly - the code samples included with the DotNetOpenID download are pretty helpful. The one thing I'd recommend is that you just use the library and avoid the ASP.NET control. It uses table based layout (hardcoded) and is pretty difficult to restyle.

link|flag
Just a note that there are several ASP.NET controls in the library. OpenIdLogin is as you say. But OpenIdTextBox is much simpler (UI wise) and is more CSS friendly. – Andrew Arnott Feb 14 at 7:31
vote up 1 vote down

DotNetNuke may not be a good current example. When we did the integration, DotNetOpenID was not currently supporting OpenID 2.0 spec. I hacked together a fork to get the 2.0 support and have not had a chance to rip it back out for the official DotNetOpenID 2.0 release.

link|flag
vote up 1 vote down

Thanks to everyone who suggested DotNetOpenID and the related tutorials. This is exactly what I was looking for.

link|flag
vote up 3 vote down

Are there any good tutorials on how to integrate OpenId with an ASP.NET site?

Andrew Arnott's post titled "How to add OpenID to your ASP.NET web site (in C# or VB.NET)"

link|flag
vote up 0 vote down

You should check out the DotNetNuke codebase as well, they have been using OpenID for the last several revisions, and you'll find working code for implementing it there.

link|flag
vote up 2 vote down

I'm considering the same thing. On the Open ID site, there's a link 'For Developers' @ http://openid.net/developers/ and from there is a link to 'Open Libraries' @ http://wiki.openid.net/Libraries and finally from there is one called 'DotNetOpenID' @ http://dotnetopenid.googlecode.com/ which is probably what you're looking for.

Good luck.

link|flag
vote up 4 vote down

DotNetOpenId available at http://code.google.com/p/dotnetopenid

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.