Single Page Login
问题 I have three separate .aspx pages that handle, logging in, creating a user, and reseting a password. What i want ot do is merged them all into my default.aspx pag and by utilizing panels hide the main content if the user isn't autheticate. So my Page_Load wil look something similar to this: Page_Load { if (User.IsAutheticated) { this.pnlLoggedIn.Visible = true; } else { this.pnlNotLoggedIn.Visible = true; } My WebConfig, currently holds these values to authenticating a users: <location path=