Esempio n. 1
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            //保存文件
            string path = "";
            string filepath = "", filename = "";
            int    Id = 0;

            try
            {
                Id = int.Parse(Request.QueryString["Id"]);
            }
            catch (Exception)
            {
                label1.Text = "操作失败,请重新进入,尝试";
                return;
            }
            if (FileUpload1.HasFile || Maticsoft.Common.FileUp.IsImg(FileUpload1.FileName))
            {
                filepath = Maticsoft.Common.FileUp.GetUploadPath("/Upload/Works");
                filename = Maticsoft.Common.FileUp.GetRandomName();
                path     = Maticsoft.Common.FileUp.uploadfile(FileUpload1.PostedFile, filepath, filename);
            }
            else
            {
                label1.Text = "没有文件,或不支持文件";
                return;
            }
            // 生成缩略图
            string bigPath = Server.MapPath("~/") + filepath + "big_" + filename + System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();

            Maticsoft.Common.CutImage.CutImg(Server.MapPath("~/") + path, bigPath, 896, 650, "h");
            string miniPath = Server.MapPath("~/") + filepath + "mini_" + filename + System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();

            Maticsoft.Common.CutImage.CutImg(Server.MapPath("~/") + path, miniPath, 100, 75, "h");

            string wPath = Server.MapPath("~/") + filepath + "w_" + filename + System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();

            Maticsoft.Common.CutImage.CutImg(Server.MapPath("~/") + path, wPath, 100, 86, "CUT");

            //保存数据到数据库
            Maticsoft.BLL.Works bll = new Maticsoft.BLL.Works();

            Maticsoft.Model.Works model = new Maticsoft.Model.Works();
            model.Title      = txtTitle.Text;
            model.Content    = txtsum.Text;
            model.GroupID    = Id;//
            model.ItemID     = 1;
            model.No         = bll.GetMaxId();
            model.Attachment = path;//图片路径


            if (bll.Add(model) == 0)
            {
                label1.Text = "插入失败";
            }
            else
            {
                label1.Text = "操作成功";
            }
        }
Esempio n. 2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtTitle.Text.Trim().Length == 0)
            {
                strErr += "标题不能为空!\\n";
            }
            if (this.txtContent.Text.Trim().Length == 0)
            {
                strErr += "内容不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtTime.Text))
            {
                strErr += "发布时间格式错误!\\n";
            }
            if (this.txtAttachment.Text.Trim().Length == 0)
            {
                strErr += "附件不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtItemID.Text))
            {
                strErr += "分类格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtGroupID.Text))
            {
                strErr += "分组格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtClick.Text))
            {
                strErr += "点击数格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtNo.Text))
            {
                strErr += "No格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtMark.Text))
            {
                strErr += "Mark格式错误!\\n";
            }
            if (this.txtS1.Text.Trim().Length == 0)
            {
                strErr += "备用不能为空!\\n";
            }
            if (this.txtS2.Text.Trim().Length == 0)
            {
                strErr += "备用2不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string   Title      = this.txtTitle.Text;
            string   Content    = this.txtContent.Text;
            DateTime Time       = DateTime.Parse(this.txtTime.Text);
            string   Attachment = this.txtAttachment.Text;
            int      ItemID     = int.Parse(this.txtItemID.Text);
            int      GroupID    = int.Parse(this.txtGroupID.Text);
            bool     IsOpen     = this.chkIsOpen.Checked;
            int      Click      = int.Parse(this.txtClick.Text);
            int      No         = int.Parse(this.txtNo.Text);
            int      Mark       = int.Parse(this.txtMark.Text);
            string   S1         = this.txtS1.Text;
            string   S2         = this.txtS2.Text;

            Maticsoft.Model.Works model = new Maticsoft.Model.Works();
            model.Title      = Title;
            model.Content    = Content;
            model.Time       = Time;
            model.Attachment = Attachment;
            model.ItemID     = ItemID;
            model.GroupID    = GroupID;
            model.IsOpen     = IsOpen;
            model.Click      = Click;
            model.No         = No;
            model.Mark       = Mark;
            model.S1         = S1;
            model.S2         = S2;

            Maticsoft.BLL.Works bll = new Maticsoft.BLL.Works();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }