tags:

views:

69

answers:

2

I want to insert code for Open Id. I am unable to find article based on this. Please Help me With giving me a link of article? Your articles help me very much.

+1  A: 

Try the answer to this question.

Nicholas Murray
or this one http://stackoverflow.com/questions/16716/openid-authentication-in-asp-net
AndreasN
or indeed this one http://stackoverflow.com/questions/933884/request-for-tutorial-to-add-openid-support-to-nerddinner-asp-net-mvc-application
Nicholas Murray
+3  A: 

Check out OpenIdPortableArea. It provides a controller and views that already contain the OpenId logic. All you need to do is register the area with AreaRegistration.RegisterAllAreas() and wire up a message handler, and you have access to the OpenId string that gets returned for the user. The views are embedded, but can be overridden. Check out the documentation for more comprehensive details.

If you're not familiar with portable areas, they are from MvcContrib. There are some good blog posts about how to get them going. The OpenIdPortableArea uses DotNetOpenAuth.

Otherwise, you can implement the logic yourself. Here's a great blog post about how to do it.

John Nelson
Very Nice ArticleStack Overflow Always help me with Good articles..
SAHIL SINGLA