protected void ButSave_Click(object sender, EventArgs e) { StaffDAL stdal = new StaffDAL(); tab = 3; string selected = Request.QueryString["studentID"]; int staffID = (int)(Session["accountID"]); Business.ScsBO sbo = new Business.ScsBO(); if (FileUploadSave.HasFile) { string imagefile = Path.GetFileName(FileUploadSave.PostedFile.FileName); if (sbo.canUpfile(imagefile)) { FileUploadSave.SaveAs(Server.MapPath("~/Images/") + FileUploadSave.PostedFile.FileName); //sbo.insertFile(imagefile, "Images/" + imagefile, selected, staffID); stdal.insertComment(selected, "", staffID.ToString(), imagefile); upLabel.Text = "Tải lên thành công!"; grMyComment.DataBind(); } else { Label1.Text = "File tải lên trùng tên !"; } } else { Label1.Text = "Lỗi "; } }
protected void btnAddComment_Click(object sender, EventArgs e) { Business.ScsBO sb = new Business.ScsBO(); StaffDAL stdal = new StaffDAL(); tab = 3; string selected = Request.QueryString["studentID"]; int staffID = (int)(Session["accountID"]); if (this.comment.Value != "") { if (FileUploadSave.HasFile) { string imagefile = Path.GetFileName(FileUploadSave.PostedFile.FileName); int fileSize = FileUploadSave.PostedFile.ContentLength; if (fileSize < 409600) { if (sb.canUpfile(imagefile)) { FileUploadSave.SaveAs(Server.MapPath("~/Images/") + FileUploadSave.PostedFile.FileName); //sbo.insertFile(imagefile, "Images/" + imagefile, selected, staffID); stdal.insertComment(selected, comment.Value, staffID.ToString(), imagefile); //upLabel.Text = "Tải lên thành công!"; //grMyComment.DataBind(); } else { Label1.Text = "File tải lên trùng tên !"; } } else { Label1.Text = "File tải lên không quá 4MB !"; } } else { stdal.insertComment(selected, comment.Value, staffID.ToString(), ""); } Label10.Text = "Thêm nhận xét thành công !"; grMyComment.DataBind(); } else if (FileUploadSave.HasFile) { string imagefile = Path.GetFileName(FileUploadSave.PostedFile.FileName); int fileSize = FileUploadSave.PostedFile.ContentLength; if (fileSize < 409600) { if (sb.canUpfile(imagefile)) { FileUploadSave.SaveAs(Server.MapPath("~/Images/") + FileUploadSave.PostedFile.FileName); //sbo.insertFile(imagefile, "Images/" + imagefile, selected, staffID); stdal.insertComment(selected, comment.Value, staffID.ToString(), imagefile); upLabel.Text = "Tải lên thành công!"; grMyComment.DataBind(); } else { Label1.Text = "File tải lên trùng tên !"; } } else { Label1.Text = "File tải lên không quá 4MB !"; } } else { Label11.Text = "Lỗi !"; } }