When I get AuthenticationStatus.Authenticated (DotNetOpenId library) response from myopenid provider, i'd like to redirect user from login page to another one using MVC Redirect(myurl). But unfortunately, instead of getting to myurl, user is redirected to empty page:
myurl?token=AWSe9PSLwx0RnymcW0q.... (+ several kilobytes of myopenid-specific query string)
I also tried FormsAuthentication.RedirectFromLoginPage(), but it redirects to original login page again instead of the myurl.
Could anybody suggest proper redirection to myurl?
Thanks