Esempio n. 1
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtTitle.Text.Trim().Length == 0)
            {
                strErr += "组名不能为空!\\n";
            }
            if (this.txtAtlas.Text.Trim().Length == 0)
            {
                strErr += "Atlas不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtTime.Text))
            {
                strErr += "Time格式错误!\\n";
            }
            if (this.txtInfo.Text.Trim().Length == 0)
            {
                strErr += "Info不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtNo.Text))
            {
                strErr += "No格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtMark.Text))
            {
                strErr += "Mark格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtClick.Text))
            {
                strErr += "Click格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string   Title = this.txtTitle.Text;
            string   Atlas = this.txtAtlas.Text;
            DateTime Time  = DateTime.Parse(this.txtTime.Text);
            string   Info  = this.txtInfo.Text;
            int      No    = int.Parse(this.txtNo.Text);
            int      Mark  = int.Parse(this.txtMark.Text);
            int      Click = int.Parse(this.txtClick.Text);

            Maticsoft.Model.WorksGroup model = new Maticsoft.Model.WorksGroup();
            model.Title = Title;
            model.Atlas = Atlas;
            model.Time  = Time;
            model.Info  = Info;
            model.No    = No;
            model.Mark  = Mark;
            model.Click = Click;

            Maticsoft.BLL.WorksGroup bll = new Maticsoft.BLL.WorksGroup();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }
Esempio n. 2
0
 private void ShowInfo(int ID)
 {
     Maticsoft.BLL.WorksGroup   bll   = new Maticsoft.BLL.WorksGroup();
     Maticsoft.Model.WorksGroup model = bll.GetModel(ID);
     this.lblID.Text    = model.ID.ToString();
     this.txtTitle.Text = model.Title;
     this.txtAtlas.Text = model.Atlas;
     this.txtTime.Text  = model.Time.ToString();
     this.txtInfo.Text  = model.Info;
     this.lblNo.Text    = model.No.ToString();
     this.txtMark.Text  = model.Mark.ToString();
     this.txtClick.Text = model.Click.ToString();
 }
Esempio n. 3
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            //保存文件
            string path = "";
            string filepath = "", filename = "";

            if (FileUpload1.HasFile)
            {
                if (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;
                }
            }


            //保存数据到数据库
            Maticsoft.BLL.WorksGroup   bll = new Maticsoft.BLL.WorksGroup();
            Maticsoft.Model.WorksGroup model = new Maticsoft.Model.WorksGroup();
            model.ID    = int.Parse(label2.Text);
            model.Title = txtTitle.Text;
            model.Time  = DateTime.Parse(txtTime.Text);
            model.Info  = txtsum.Text;
            model.Mark  = int.Parse(txtMark.Text);
            model.No    = int.Parse(txtNo.Text);
            model.Click = int.Parse(txtClick.Text);
            if (path != "")
            {
                model.Atlas = path;//图片路径
            }
            else
            {
                model.Atlas = Image1.ImageUrl;
            }
            if (bll.Update(model))
            {
                label1.Text = "操作成功";
            }
            else
            {
                label1.Text = "操作失败";
            }
        }
Esempio n. 4
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(Maticsoft.Model.WorksGroup model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update WorksGroup set ");
            strSql.Append("Title=@Title,");
            strSql.Append("Atlas=@Atlas,");
            strSql.Append("Time=@Time,");
            strSql.Append("Info=@Info,");
            strSql.Append("Mark=@Mark,");
            strSql.Append("Click=@Click");
            strSql.Append(" where ID=@ID");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Title", SqlDbType.NVarChar,  100),
                new SqlParameter("@Atlas", SqlDbType.NVarChar,   50),
                new SqlParameter("@Time",  SqlDbType.DateTime),
                new SqlParameter("@Info",  SqlDbType.NVarChar,   -1),
                new SqlParameter("@Mark",  SqlDbType.Int,         4),
                new SqlParameter("@Click", SqlDbType.Int,         4),
                new SqlParameter("@ID",    SqlDbType.Int,         4),
                new SqlParameter("@No",    SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Title;
            parameters[1].Value = model.Atlas;
            parameters[2].Value = model.Time;
            parameters[3].Value = model.Info;
            parameters[4].Value = model.Mark;
            parameters[5].Value = model.Click;
            parameters[6].Value = model.ID;
            parameters[7].Value = model.No;

            int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 5
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            //保存文件
            string path = "";
            string filepath = "", filename = "";

            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);
                // 生成缩略图
                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");
            }
            else
            {
                label1.Text = "没有文件,或不支持文件";
                return;
            }
            //保存数据到数据库
            Maticsoft.BLL.WorksGroup   bll = new Maticsoft.BLL.WorksGroup();
            Maticsoft.Model.WorksGroup model = new Maticsoft.Model.WorksGroup();
            model.Title = txtTitle.Text;
            model.Info  = txtsum.Text;
            model.Mark  = int.Parse(txtMark.Text);
            model.No    = bll.GetMaxId();
            model.Atlas = path;//图片路径


            if (bll.Add(model) == 0)
            {
                label1.Text = "插入失败";
            }
            label1.Text = "操作成功";
        }
Esempio n. 6
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public Maticsoft.Model.WorksGroup DataRowToModel(DataRow row)
 {
     Maticsoft.Model.WorksGroup model = new Maticsoft.Model.WorksGroup();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["Title"] != null)
         {
             model.Title = row["Title"].ToString();
         }
         if (row["Atlas"] != null)
         {
             model.Atlas = row["Atlas"].ToString();
         }
         if (row["Time"] != null && row["Time"].ToString() != "")
         {
             model.Time = DateTime.Parse(row["Time"].ToString());
         }
         if (row["Info"] != null)
         {
             model.Info = row["Info"].ToString();
         }
         if (row["No"] != null && row["No"].ToString() != "")
         {
             model.No = int.Parse(row["No"].ToString());
         }
         if (row["Mark"] != null && row["Mark"].ToString() != "")
         {
             model.Mark = int.Parse(row["Mark"].ToString());
         }
         if (row["Click"] != null && row["Click"].ToString() != "")
         {
             model.Click = int.Parse(row["Click"].ToString());
         }
     }
     return(model);
 }
Esempio n. 7
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Maticsoft.Model.WorksGroup model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into WorksGroup(");
            strSql.Append("Title,Atlas,Time,Info,No,Mark,Click)");
            strSql.Append(" values (");
            strSql.Append("@Title,@Atlas,@Time,@Info,@No,@Mark,@Click)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Title", SqlDbType.NVarChar,  100),
                new SqlParameter("@Atlas", SqlDbType.NVarChar,   50),
                new SqlParameter("@Time",  SqlDbType.DateTime),
                new SqlParameter("@Info",  SqlDbType.NVarChar,   -1),
                new SqlParameter("@No",    SqlDbType.Int,         4),
                new SqlParameter("@Mark",  SqlDbType.Int,         4),
                new SqlParameter("@Click", SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Title;
            parameters[1].Value = model.Atlas;
            parameters[2].Value = model.Time;
            parameters[3].Value = model.Info;
            parameters[4].Value = model.No;
            parameters[5].Value = model.Mark;
            parameters[6].Value = model.Click;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Esempio n. 8
0
        private void Bind()
        {
            int Id = 0;

            if (Request.QueryString["Id"] != null)
            {
                Id = int.Parse(Request.QueryString["Id"]);
            }
            else
            {
                return;
            }
            Maticsoft.BLL.WorksGroup   bll   = new Maticsoft.BLL.WorksGroup();
            Maticsoft.Model.WorksGroup model = bll.GetModel(Id);
            txtNo.Text      = model.No.ToString();
            txtClick.Text   = model.Click.ToString();
            txtMark.Text    = model.Mark.ToString();
            txtTitle.Text   = model.Title;
            txtTime.Text    = model.Time.ToString();
            txtsum.Text     = model.Info;
            Image1.ImageUrl = model.Atlas;
            label2.Text     = model.ID.ToString();
        }
Esempio n. 9
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public Maticsoft.Model.WorksGroup GetModel(int ID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 ID,Title,Atlas,Time,Info,No,Mark,Click from WorksGroup ");
            strSql.Append(" where ID=@ID");
            SqlParameter[] parameters =
            {
                new SqlParameter("@ID", SqlDbType.Int, 4)
            };
            parameters[0].Value = ID;

            Maticsoft.Model.WorksGroup model = new Maticsoft.Model.WorksGroup();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }