protected void btnSua_Click(object sender, EventArgs e) { try { if (txtTenVanChuyen.Text.Length > 0 && txtMaVanChuyen.Text.Length > 0) { tbl_Transport tsp = db.tbl_Transport.Find(int.Parse(txtMaVanChuyen.Text)); tsp.Transport_Name = txtTenVanChuyen.Text; db.SaveChanges(); load(); lbThongBao.Text = "sửa thành công"; lbThongBao.ForeColor = System.Drawing.Color.Green; } else { lbThongBao.Text = "Chưa nhập dữ liệu"; lbThongBao.ForeColor = System.Drawing.Color.Red; } } catch (Exception ex) { lbThongBao.Text = "Đã có lỗi xảy ra. Vui lòng thử lại sau."; lbThongBao.ForeColor = System.Drawing.Color.Red; } }
protected void btnThem_Click(object sender, EventArgs e) { try { if (txtTenVanChuyen.Text.Length > 0) { tbl_Transport tsp = new tbl_Transport(); tsp.Transport_Name = txtTenVanChuyen.Text; tsp.PhiVC = double.Parse(txtPhi.Text); db.tbl_Transport.Add(tsp); db.SaveChanges(); load(); lbThongBao.Text = "Thêm thành công"; lbThongBao.ForeColor = System.Drawing.Color.Green; } else { lbThongBao.Text = "Chưa nhập dữ liệu"; lbThongBao.ForeColor = System.Drawing.Color.Red; } } catch (Exception ex) { lbThongBao.Text = "Đã có lỗi xảy ra. Vui lòng thử lại sau."; lbThongBao.ForeColor = System.Drawing.Color.Red; } }
protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e) { Label lblMa = (Label)GridView1.Rows[e.NewEditIndex].FindControl("lbMa"); tbl_Transport p = db.tbl_Transports.SingleOrDefault(c => c.Transport_ID == int.Parse(lblMa.Text)); txtMa.Text = p.Transport_ID.ToString(); txtTenVC.Text = p.Transport_Name.ToString(); GridView1.EditIndex = e.NewEditIndex; load(); }
protected void btnXoa_Click(object sender, EventArgs e) { tbl_Transport t = db.tbl_Transports.SingleOrDefault(c => c.Transport_ID == int.Parse(txtMa.Text)); db.tbl_Transports.DeleteOnSubmit(t); db.SubmitChanges(); load(); Label1.Text = "Xoá thành công."; rong(); txtTenVC.Focus(); }
protected void btnNhap_Click(object sender, EventArgs e) { tbl_Transport t = new tbl_Transport(); t.Transport_Name = txtTenVC.Text; db.tbl_Transports.InsertOnSubmit(t); db.SubmitChanges(); load(); Label1.Text = "Thêm thành công"; rong(); txtTenVC.Focus(); }