private void LoadChiTiet(long idNews) { SP_News news = new SP_News(); DataTable dtb = news.News_SelectByID(idNews); if (dtb.Rows.Count > 0) { txtTitle.Text = dtb.Rows[0]["Title"] + ""; drChuyenMuc.SelectedValue = dtb.Rows[0]["CateID"] + ""; txtMieuTa.Text = dtb.Rows[0]["Description"] + ""; fckNoiDung.Value = dtb.Rows[0]["Content"] + ""; txtTacGia.Text = dtb.Rows[0]["Author"] + ""; txtLienKet.Text = dtb.Rows[0]["Link"] + ""; txtThoiGian.Text = dtb.Rows[0]["CreateDate"] + ""; txtTuKhoa.Text = dtb.Rows[0]["Keyword"] + ""; if (dtb.Rows[0]["FeedBack"] + "" == "1") { rdoChoPhep.Checked = true; } else { rdoKhongCHoPhep.Checked = true; } if (dtb.Rows[0]["Picture"] + "" != "") { imagePic.Visible = true; imagePic.ImageUrl = "../" + dtb.Rows[0]["Picture"] + ""; picUp.Visible = false; butThayAnh.Visible = true; } } else { picUp.Visible = true; butThayAnh.Visible = false; } news = null; }
protected void butGuiBai_Click(object sender, EventArgs e) { string strError = ""; int Active = 0, FeedBack = 0, Status = 0; if (rdoChoPhep.Checked == true) { FeedBack = 1; } else { FeedBack = 0; } if (chkDang.Checked == true) { Status = 1; } else { if (chkDuyet.Checked == true) { Status = 0; } //else // Status = 2; } if (idNews == 0) { Active = 0; } else { Active = 2; } if (txtTitle.Text + "" == "") { ScriptManager.RegisterStartupScript(this, this.GetType(), "Alert", "alert('Bạn chưa nhập tiêu đề bài viết');", true); } else { if (drChuyenMuc.SelectedValue + "" == "0") { ScriptManager.RegisterStartupScript(this, this.GetType(), "redirectMe", "alert('Chưa chọn chuyên mục ');", true); } if (txtMieuTa.Text + "" == "") { ScriptManager.RegisterStartupScript(this, this.GetType(), "redirectMe", "alert('Chưa nhập miêu tả ');", true); } } if (fckNoiDung.Value + "" == "") { ScriptManager.RegisterStartupScript(this, this.GetType(), "redirectMe", "alert('Chưa nhập nội dung tin ');", true); } if (txtTacGia.Text + "" == "") { ScriptManager.RegisterStartupScript(this, this.GetType(), "redirectMe", "alert('Chưa nhập tác giả ');", true); } else { HttpPostedFile myfile = picUp.PostedFile; string strFileName = picUp.FileName + ""; if (strFileName != "") { GhiFileAnh(); } else { strFileName = imagePic.ImageUrl; GhiFileAnh(); } SP_News news = new SP_News(); news.News_Insert(idNews, int.Parse("0" + drChuyenMuc.SelectedValue), hidUser.Value + "", txtTitle.Text + "", txtMieuTa.Text + "", fckNoiDung.Value + "", txtTuKhoa.Text + "", txtTacGia.Text + "", "Upload/" + strFileName, DateTime.Now, DateTime.Now, txtLienKet.Text + "", Status, hidUser.Value + "", FeedBack, ref strError); if (strError + "" != "") { ScriptManager.RegisterStartupScript(this, this.GetType(), "redirectMe", "alert('" + strError + "');", true); } news = null; } }