Пример #1
0
 public void CreateAnnounce(Announce announce)
 {
     using (SqlConnection connection = base.GetConnection())
     {
         SqlCommand command = new SqlCommand("_AnnounceUpdate", connection) {
             CommandType = CommandType.StoredProcedure
         };
         command.Parameters.AddWithValue("@Type", 0);
         command.Parameters.AddWithValue("@AnnounceID", 0);
         command.Parameters.AddWithValue("@CateAnnounceID", announce.CateAnnounceID);
         command.Parameters.AddWithValue("@Title", announce.Title);
         command.Parameters.AddWithValue("@ShortDescribe", announce.ShortDescribe);
         command.Parameters.AddWithValue("@FullDescribe", announce.FullDescribe);
         command.Parameters.AddWithValue("@ImageThumb", announce.ImageThumb);
         command.Parameters.AddWithValue("@FileName", announce.FileName);
         command.Parameters.AddWithValue("@Author", announce.Author);
         command.Parameters.AddWithValue("@PostDate", announce.PostDate);
         command.Parameters.AddWithValue("@RelationTotal", announce.RelationTotal);
         command.Parameters.AddWithValue("@Status", announce.Status);
         command.Parameters.AddWithValue("@Language", announce.Language);
         command.Parameters.AddWithValue("@Ishot", announce.Ishot);
         command.Parameters.AddWithValue("@Isview", announce.Isview);
         command.Parameters.AddWithValue("@Ishome", announce.Ishome);
         command.Parameters.AddWithValue("@IsComment", announce.IsComment);
         command.Parameters.AddWithValue("@ApprovalDate", announce.ApprovalDate);
         command.Parameters.AddWithValue("@ApprovalUserName", announce.ApprovalUserName);
         command.Parameters.AddWithValue("@IsApproval", announce.IsApproval);
         command.Parameters.AddWithValue("@CreatedUserName", announce.CreatedUserName);
         command.Parameters.AddWithValue("@CommentTotal", announce.CommentTotal);
         connection.Open();
         if (command.ExecuteNonQuery() <= 0)
         {
             throw new DataAccessException("Kh\x00f4ng thể th\x00eam mới tin");
         }
         command.Dispose();
     }
 }
Пример #2
0
        private void initControl(int Id)
        {
            AdminBSO adminBSO = new AdminBSO();
            ETO.Admin admin = new ETO.Admin();
            if (Id > 0)
            {
                btn_add.Visible = false;
                btn_edit.Visible = true;
                try
                {
                    Announce announce = new Announce();
                    AnnounceBSO announceBSO = new AnnounceBSO();
                    announce = announceBSO.GetAnnounceById(Id);
                    hddAnnounceID.Value = Convert.ToString(announce.AnnounceID);

                    ddlCateAnnounce.SelectedValue = Convert.ToString(announce.CateAnnounceID);
                    txtTitle.Text = announce.Title;
                    txtRadShort.Html = announce.ShortDescribe;
                    txtRadFull.Html = announce.FullDescribe;
                    hddImageThumb.Value = announce.ImageThumb;
                    hddFileName.Value = announce.FileName;
                    txtAuthor.Text = announce.Author;
                    txtRadDate.SelectedDate = announce.PostDate;
                    hddRelationTotal.Value = Convert.ToString(announce.RelationTotal);
                    rdbStatus.SelectedValue = Convert.ToString(announce.Status);
                    rdbIshot.SelectedValue = Convert.ToString(announce.Ishot);
                    rdbIshome.SelectedValue = Convert.ToString(announce.Ishome);

                    hddCommentTotal.Value = Convert.ToString(announce.CommentTotal);
                    hddIsView.Value = Convert.ToString(announce.Isview);
                    hddCreateUserName.Value = announce.CreatedUserName;
                    hddApprovalUserName.Value = announce.ApprovalUserName;
                    hddApprovalDate.Value = Convert.ToString(announce.ApprovalDate);

                    rdbComment.SelectedValue = Convert.ToString(announce.IsComment);

                    admin = adminBSO.GetAdminById(Session["Admin_UserName"].ToString());

                    if (Session["Admin_UserName"].ToString().Equals("administrator") || adminBSO.CheckPermission(Session["Admin_UserName"].ToString(), "Approval"))
                    {
                        rdbApproval.SelectedValue = Convert.ToString(announce.IsApproval);
                        rdbApproval.Enabled = true;
                    }
                    else
                    {
                        rdbApproval.SelectedValue = Convert.ToString(announce.IsApproval);
                        rdbApproval.Enabled = false;
                    }




                }
                catch (Exception ex)
                {
                    clientview.Text = ex.Message.ToString();
                }
            }
            else
            {
                txtRadDate.SelectedDate = DateTime.Now;
                btn_add.Visible = true;
                btn_edit.Visible = false;

                if (Session["Admin_UserName"].ToString().Equals("administrator") || adminBSO.CheckPermission(Session["Admin_UserName"].ToString(), "Approval"))
                {

                    rdbApproval.Enabled = true;
                }
                else
                {

                    rdbApproval.Enabled = false;
                }
            }
        }
Пример #3
0
        private Announce ReceiveHtml()
        {
            ConfigBSO configBSO = new ConfigBSO();
            Config config = configBSO.GetAllConfig(Language.language);
            int thumb_w = Convert.ToInt32(config.New_large_w);
            int thumb_h = Convert.ToInt32(config.New_large_h);

            commonBSO commonBSO = new commonBSO();
            string path_thumb = Request.PhysicalApplicationPath.Replace(@"\", "/") + "/Upload/Announce/AnnounceThumb/";
            string image_thumb = commonBSO.UploadImage(file_image_thumb, path_thumb, thumb_w, thumb_h);

            string path = Request.PhysicalApplicationPath.Replace(@"\", "/") + "/Upload/Announce/Files/";
            string file_upload = commonBSO.UploadFile(file_attached, path, 1800000000000);


            Announce announce = new Announce();
            announce.AnnounceID = (hddAnnounceID.Value != "") ? Convert.ToInt32(hddAnnounceID.Value) : 0;
            announce.CateAnnounceID = Convert.ToInt32(ddlCateAnnounce.SelectedValue);
            announce.Title = txtTitle.Text;
            announce.ShortDescribe = txtRadShort.Html;
            announce.FullDescribe = txtRadFull.Html;
            announce.ImageThumb = (image_thumb != "") ? image_thumb : hddImageThumb.Value;
            announce.FileName = (file_upload != "") ? file_upload : hddFileName.Value;
            announce.Author = txtAuthor.Text;
            announce.PostDate = txtRadDate.SelectedDate.Value;
            announce.RelationTotal = (hddRelationTotal.Value != "") ? Convert.ToInt32(hddRelationTotal.Value) : 0;
            announce.Status = Convert.ToBoolean(rdbStatus.SelectedItem.Value);
            announce.Language = Language.language;
            announce.Ishot = Convert.ToBoolean(rdbIshot.SelectedValue);
            announce.Ishome = Convert.ToBoolean(rdbIshome.SelectedValue);
            announce.IsComment = Convert.ToBoolean(rdbComment.SelectedValue);

            announce.Isview = (hddIsView.Value != "") ? Convert.ToInt32(hddIsView.Value) : 0;
            announce.CommentTotal = (hddCommentTotal.Value != "") ? Convert.ToInt32(hddCommentTotal.Value) : 0;

            announce.CreatedUserName = (hddCreateUserName.Value != "") ? hddCreateUserName.Value : Session["Admin_UserName"].ToString();

            announce.IsApproval = Convert.ToBoolean(rdbApproval.SelectedValue);
            if (hddApprovalUserName.Value != "")
            {
                announce.ApprovalUserName = hddApprovalUserName.Value;
                announce.ApprovalDate = Convert.ToDateTime(hddApprovalDate.Value);
            }
            else
                if (Convert.ToBoolean(rdbApproval.SelectedValue))
                {
                    announce.ApprovalUserName = Session["Admin_UserName"].ToString();
                    announce.ApprovalDate = DateTime.Now;
                }
                else
                {
                    announce.ApprovalUserName = "";
                    announce.ApprovalDate = DateTime.Now;
                }


            return announce;

        }
Пример #4
0
 public void CreateAnnounce(Announce announce)
 {
     new AnnounceDAO().CreateAnnounce(announce);
 }
Пример #5
0
 public void UpdateAnnounce(Announce announce)
 {
     new AnnounceDAO().UpdateAnnounce(announce);
 }