I am writing a small example of Login webSite, there are two types of accounts and passwords, one is an account and password is stored in the Web.config file and the other two accounts and passwords are saved in SQL Server database, My problem is that in form 1, when logging in it opens Logon_Redirect.aspx file but cannot access, the following is my code
I am debugging and running to the code where this opens the Logon_Redirect.aspx file but nothing, but when I log in with another account and password (the user password of SQL Server) log in well.
In file Web.config
- <appSettings>
- ...
- <add key="SmtpServer" value="localhost"/>
- <add key="EmailWebmaster" value="admin"/>
- <add key="Password" value="123"/>
- ...
- </appSettings>
In file Logon_Redirect.aspx
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>Untitled Page</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- </div>
- </form>
- </body>
- </html>
In file Logon_Redirect.aspx.cs
- public partial class Logon_Redirect : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
-
- if (Page.User.IsInRole(Globals.Settings.AppRoles.KhachHang))
- Response.Redirect(Globals.ApplicationPath);
- else if (Page.User.IsInRole(Globals.Settings.AppRoles.Admin))
- Response.Redirect(Globals.ApplicationPath + "WebMaster/Contacts/Contact.aspx");
- }
- }
In file Logon.aspx.cs
- protected void btLogon_Click(object sender, EventArgs e)
- {
-
- if (Membership.ValidateUser(txtEmail.Text, txtPassword.Text))
- {
- if (Request.QueryString["ReturnUrl"] != null)
- {
- FormsAuthentication.RedirectFromLoginPage(txtEmail.Text, false);
- }
- else
- {
- FormsAuthentication.SetAuthCookie(txtEmail.Text, false);
- Session["username"] = txtEmail.Text.Trim();
- Response.Redirect(Globals.ApplicationPath + "Logon_Redirect.aspx");
-
- }
- }
- else
- {
-
- if (webapp4U.BOL.User.CheckUserName(txtEmail.Text) && txtPassword.Text == ConfigurationManager.AppSettings["Password"].ToString())
- {
- FormsAuthentication.SetAuthCookie(txtEmail.Text, false);
- Session["username"] = txtEmail.Text.Trim();
- Response.Redirect(Globals.ApplicationPath + "Logon_Redirect.aspx");
- }
- else
- lblMsg.Text = ResourceManager.GetString("Logon_False");
- }
- }