diff options
Diffstat (limited to 'samples/OAuthConsumer/SignInWithTwitter.aspx.cs')
-rw-r--r-- | samples/OAuthConsumer/SignInWithTwitter.aspx.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthConsumer/SignInWithTwitter.aspx.cs b/samples/OAuthConsumer/SignInWithTwitter.aspx.cs index 26ccead..5bc46ef 100644 --- a/samples/OAuthConsumer/SignInWithTwitter.aspx.cs +++ b/samples/OAuthConsumer/SignInWithTwitter.aspx.cs @@ -21,8 +21,8 @@ string screenName; int userId; if (TwitterConsumer.TryFinishSignInWithTwitter(out screenName, out userId)) { - loggedInPanel.Visible = true; - loggedInName.Text = screenName; + this.loggedInPanel.Visible = true; + this.loggedInName.Text = screenName; // In a real app, the Twitter username would likely be used // to log the user into the application. |