protected void btnUpdate_Click(object sender, EventArgs e) { if (txtBirthdate.Text == "") { txtBirthdate.Text = txtBirthdate1.Text; } try { if (fulHinhdaidien.HasFile) { System.IO.FileInfo f = new System.IO.FileInfo(fulHinhdaidien.FileName); string newName = f.ToString(); fulHinhdaidien.SaveAs(Server.MapPath("./") + "Hinh/" + newName); newName.ToString(); Models.Account acc = new Models.Account(); //var i = txtFullnaem.Text; acc.changeinfor(txtFullnaem.Text, txtPhone.Text, txtBirthdate.Text, newName, txtEmail.Text, txtWardID.Text, txtDistrictID.Text, txtProvinceID.Text, Session["userid"].ToString()); loadLoai(); } else { Models.Account acc = new Models.Account(); // var i = txtFullnaem.Text; acc.changeinfor1(txtFullnaem.Text, txtPhone.Text, txtBirthdate.Text, txtEmail.Text, txtWardID.Text, txtDistrictID.Text, txtProvinceID.Text, Session["userid"].ToString()); loadLoai(); } Response.Write("<script LANGUAGE='JavaScript' >alert('Cập nhật thông tin thành công')</script>"); } catch { Response.Write("<script LANGUAGE='JavaScript' >alert('Cập nhật thông tin thất bại')</script>"); } }