You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

74 lines
1.8 KiB

using Swift.DAL.BL.System.UserManagement;
using Swift.DAL.SwiftDAL;
using Swift.web.Library;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Swift.web.SwiftSystem.UserManagement.AgentUserSetup
{
public partial class ChangePassword : System.Web.UI.Page
{
private readonly ApplicationUserDao _obj = new ApplicationUserDao();
private readonly SwiftLibrary _sl = new SwiftLibrary();
protected void Page_Load(object sender, EventArgs e)
{
Authenticate();
PopulateUserName();
if (!IsPostBack)
{
}
}
private void Authenticate()
{
_sl.CheckSession();
}
private void ManageMessage2(DbResult dbResult)
{
GetStatic.SetMessage(dbResult);
if (dbResult.ErrorCode == "0")
{
GetStatic.PrintMessage(Page);
}
else
{
GetStatic.AlertMessage(Page);
}
}
protected void PopulateUserName()
{
userName.Text = GetStatic.GetUser();
}
private void Update()
{
DbResult dbResult = _obj.ChangePassword(userName.Text, pwd.Text, oldPwd.Text);
ManageMessage2(dbResult);
if (dbResult.ErrorCode == "0")
{
Response.Redirect("~/Agent/Dashboard2.aspx");
}
}
protected void btnOk_Click(object sender, EventArgs e)
{
if (pwd.Text != confirmPwd.Text)
{
msg.Text = "Confirm Password Doesn't Match";
return;
}
else
{
Update();
}
}
}
}