Пример #1
0
    public void LoginUser()
    {
        //[FirstName] [varchar](50) NOT NULL,
            //[LastName] [varchar](50) NOT NULL,
            //[Address] [varchar](250) NOT NULL,
            //[City] [varchar](50) NOT NULL,
            //[State] [varchar](50) NOT NULL,
            //[Zip] [varchar](50) NOT NULL,
            //[ContactNo1] [varchar](50) NOT NULL,
            //[ContactNo2] [varchar](50) NOT NULL,
            //[LoginId] [varchar](50) NOT NULL,
            //[Password] [varchar](50) NOT NULL,
            //[CreatedBy] [int] NULL,
            //[CreatedOn] [datetime] NULL,
            //[ModifiedBy] [int] NULL,
            //[ModifiedOn] [timestamp] NULL,
            //[EmployeeNo] [varchar](50) NOT NULL,
            //[IsActive] [bit] NOT NULL
        whitfielduser wUser = new whitfielduser();
        if (wUser.IsUserExists(tbUserID.Text.Trim(),tbpassword.Text.Trim()))
        {
            DataSet dsUser = wUser.GetUserRecord(tbUserID.Text.Trim());
            DataTable myControls;
            myControls = dsUser.Tables[0];
            if (myControls.Rows.Count > 0)
            {
                try
                {
                    foreach (DataRow dRow in myControls.Rows)
                    {
                        Response.Cookies["useridentifier"].Value = dRow["Userid"].ToString().Trim();
                        Response.Cookies["Name"].Value = dRow["FirstName"].ToString() +" " + dRow["LastName"].ToString();
                        Response.Cookies["UserId"].Value = dRow["LoginId"].ToString().Trim();
                        Response.Cookies["EmployeeNo"].Value = dRow["EmployeeNo"].ToString().Trim();
                        Response.Cookies["RoleId"].Value = dRow["RoleId"].ToString().Trim();

                        if (dRow["RoleId"].ToString().Trim() == "5")
                            Response.Redirect("installer_projects.aspx");
                        else
                            Response.Redirect("whitfieldmain.aspx");
                    }
                }
                catch (Exception ex)
                {
                    HttpResponse objResponse = HttpContext.Current.Response;
                    objResponse.Write(ex.Message);
                }
            }

        }
        else{
            lblMsg.Text = "Check your Userid and password";
        }
    }
Пример #2
0
    protected void btnupdate_Click(object sender, EventArgs e)
    {
        whitfielduser wUser = new whitfielduser();
        if (wUser.IsUserExists(txtloginid.Text.Trim(),txtoldpasswd.Text.Trim()))
        {
            if (wUser.ChangePass(txtloginid.Text.Trim(), txtnewpasswd.Text.Trim()))
            {
                lblErrMsg.Text = "Your Password is successfully changed, please close the window and login";
            }
            else
            {
                lblErrMsg.Text = "Please check your userid and password.";
            }

        }
        else
        {
            lblErrMsg.Text = "Please check your Userid and Password and try again.";
        }
    }