views:

49

answers:

1

Hi there,

I was trying to replicate what Rick is doing here for OpenID implementation: http://www.west-wind.com/weblog/posts/899303.aspx

However, when I get to this part:

return req.RedirectingResponse.AsActionResult();

Then I cannot continue, as AsActionResult is no longer exists, is there any replacement of this?

Thanks alot

+2  A: 

It still exists. It is an extension method that you only get by having this at the top of your file:

using DotNetOpenAuth.Messaging;
Andrew Arnott
Oh, cool....Thanks alot...
PlayKid