protected void btOK_Click(object sender, EventArgs e) { try { string sTenfile; sTenfile = FileUpload1.FileName; FileUpload1.SaveAs(MapPath("~/Images/Logo/" + sTenfile)); string str1 = @"Update LoGo set LoGo = '" + sTenfile + "'"; XLDL.Execute(str1); Response.Write("<script>alert('Đổi logo thành công')</script>"); } catch { Response.Write("<script>alert('Thất bại')</script>"); } }
protected void gvTinTuc_RowCommand(object sender, GridViewCommandEventArgs e) { int chiso = int.Parse(e.CommandArgument.ToString()); int ma = int.Parse(gvTinTuc.Rows[chiso].Cells[0].Text); if (e.CommandName == "Xoa") { try { DataTable dt = XLDL.GetData("select * from BLTinTuc where MaTin = " + ma); if (dt.Rows.Count > 0) { Response.Write("<script>alert('Không thể xóa tin này. Bạn cần xóa hêt bình luận có trong tin này trước')</script>"); } else { dt = XLDL.GetData("delete from TinTuc where MaTin =" + ma); lbThongBao.Text = "Xóa thành công"; capnhat(); } } catch { Response.Write("<script>alert('Có lỗi trong quá trình xóa')</script>"); } } if (e.CommandName == "Duyet") { int duyet = 1; try { string str1 = @"Update TinTuc set Duyet = " + duyet + " where MaTin = " + ma; XLDL.Execute(str1); lbThongBao.Text = "Đã duyệt"; capnhat(); } catch { lbThongBao.Text = "Cập nhật thất bại"; } } }