예제 #1
0
 protected void btnSave_Click(object sender, EventArgs e)
 {
     try
     {
         OtherFunctions obj   = new OtherFunctions();
         Security       sec   = new Security();
         string         Email = txtEmail.Value;
         //string Password = Security.PasswordEncoder(txtPassword.Value);
         string  Password   = sec.EncodePassword(txtPassword.Value);
         string  MailServer = txtMailServer.Value;
         DataSet ds         = obj.GetMailAdminByAgentCatID("MailAdmin", Globals.AgentCatID);
         int     kq         = -1;
         if (ds.Tables[0].Rows.Count > 0) //có MailAdmin rùi, update
         {
             int MailID = Convert.ToInt32(ds.Tables[0].Rows[0]["MailID"].ToString());
             kq = obj.UpdateMailAdmin(MailID, Globals.AgentCatID, Email, Password, MailServer);
         }
         else //chưa có, insert
         {
             kq = obj.InsertMailAdmin(Globals.AgentCatID, Email, Password, MailServer);
         }
         if (kq != -1)
         {
             lblMessage.Visible = true;
             lblMessage.Text    = "Đã thiết lập thông tin Mail Server thành công!";
         }
     }
     catch { }
 }
예제 #2
0
 private void LoadData()
 {
     try
     {
         OtherFunctions obj = new OtherFunctions();
         DataSet        ds  = obj.GetMailAdminByAgentCatID("MailAdmin", Globals.AgentCatID);
         if (ds.Tables[0].Rows.Count > 0)
         {
             txtEmail.Value      = Convert.ToString(ds.Tables[0].Rows[0]["Email"]);
             txtPassword.Value   = Convert.ToString(ds.Tables[0].Rows[0]["Password"]);
             txtMailServer.Value = Convert.ToString(ds.Tables[0].Rows[0]["MailServer"]);
         }
     }
     catch { }
 }