diff options
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs b/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs index d3919fb..5a86f31 100644 --- a/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs +++ b/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs @@ -33,13 +33,13 @@ AuthorizedTokenResponse accessToken = consumer.ProcessUserAuthorization(e.Response); if (accessToken != null) { - this.MultiView1.SetActiveView(AuthorizationGiven); + this.MultiView1.SetActiveView(this.AuthorizationGiven); // At this point, the access token would be somehow associated with the user // account at the RP. ////Database.Associate(e.Response.ClaimedIdentifier, accessToken.AccessToken); } else { - this.MultiView1.SetActiveView(AuthorizationDenied); + this.MultiView1.SetActiveView(this.AuthorizationDenied); } // Avoid the redirect |