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.
I want to insert code for Open Id. I am unable to find article
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.