Пример #1
0
 private void ShowInfo(int NewsId)
 {
     NoName.NetShop.BLL.NewsModelBll bll   = new NoName.NetShop.BLL.NewsModelBll();
     NoName.NetShop.Model.NewsModel  model = bll.GetModel(NewsId);
     this.lblNewsType.Text      = model.NewsType.ToString();
     this.lblStatus.Text        = model.Status.ToString();
     this.lblTitle.Text         = model.Title;
     this.lblSubTitle.Text      = model.SubTitle;
     this.lblBrief.Text         = model.Brief;
     this.lblContent.Text       = model.Content;
     this.lblSmallImageUrl.Text = model.SmallImageUrl;
     this.lblAuthor.Text        = model.Author;
     this.lblFrom.Text          = model.From;
     this.lblVideoUrl.Text      = model.VideoUrl;
     this.lblImageUrl.Text      = model.ImageUrl;
     this.lblProductId.Text     = model.ProductId;
     this.lblInsertTime.Text    = model.InsertTime.ToString();
     this.lblModifyTime.Text    = model.ModifyTime.ToString();
     this.lblTags.Text          = model.Tags;
 }
Пример #2
0
 private void ShowInfo(int NewsId)
 {
     NoName.NetShop.BLL.NewsModelBll bll=new NoName.NetShop.BLL.NewsModelBll();
     NoName.NetShop.Model.NewsModel model=bll.GetModel(NewsId);
     this.lblNewsType.Text=model.NewsType.ToString();
     this.lblStatus.Text=model.Status.ToString();
     this.lblTitle.Text=model.Title;
     this.lblSubTitle.Text=model.SubTitle;
     this.lblBrief.Text=model.Brief;
     this.lblContent.Text=model.Content;
     this.lblSmallImageUrl.Text=model.SmallImageUrl;
     this.lblAuthor.Text=model.Author;
     this.lblFrom.Text=model.From;
     this.lblVideoUrl.Text=model.VideoUrl;
     this.lblImageUrl.Text=model.ImageUrl;
     this.lblProductId.Text=model.ProductId;
     this.lblInsertTime.Text=model.InsertTime.ToString();
     this.lblModifyTime.Text=model.ModifyTime.ToString();
     this.lblTags.Text=model.Tags;
 }
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtNewsType.Text))
            {
                strErr += "NewsType不是数字!\\n";
            }
            if (!PageValidate.IsNumber(txtStatus.Text))
            {
                strErr += "Status不是数字!\\n";
            }
            if (this.txtTitle.Text == "")
            {
                strErr += "Title不能为空!\\n";
            }
            if (this.txtSubTitle.Text == "")
            {
                strErr += "SubTitle不能为空!\\n";
            }
            if (this.txtBrief.Text == "")
            {
                strErr += "Brief不能为空!\\n";
            }
            if (this.txtContent.Text == "")
            {
                strErr += "Content不能为空!\\n";
            }
            if (this.txtSmallImageUrl.Text == "")
            {
                strErr += "SmallImageUrl不能为空!\\n";
            }
            if (this.txtAuthor.Text == "")
            {
                strErr += "Author不能为空!\\n";
            }
            if (this.txtFrom.Text == "")
            {
                strErr += "From不能为空!\\n";
            }
            if (this.txtVideoUrl.Text == "")
            {
                strErr += "VideoUrl不能为空!\\n";
            }
            if (this.txtImageUrl.Text == "")
            {
                strErr += "ImageUrl不能为空!\\n";
            }
            if (this.txtProductId.Text == "")
            {
                strErr += "ProductId不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtInsertTime.Text))
            {
                strErr += "InsertTime不是时间格式!\\n";
            }
            if (!PageValidate.IsDateTime(txtModifyTime.Text))
            {
                strErr += "ModifyTime不是时间格式!\\n";
            }
            if (this.txtTags.Text == "")
            {
                strErr += "Tags不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      NewsType      = int.Parse(this.txtNewsType.Text);
            int      Status        = int.Parse(this.txtStatus.Text);
            string   Title         = this.txtTitle.Text;
            string   SubTitle      = this.txtSubTitle.Text;
            string   Brief         = this.txtBrief.Text;
            string   Content       = this.txtContent.Text;
            string   SmallImageUrl = this.txtSmallImageUrl.Text;
            string   Author        = this.txtAuthor.Text;
            string   From          = this.txtFrom.Text;
            string   VideoUrl      = this.txtVideoUrl.Text;
            string   ImageUrl      = this.txtImageUrl.Text;
            string   ProductId     = this.txtProductId.Text;
            DateTime InsertTime    = DateTime.Parse(this.txtInsertTime.Text);
            DateTime ModifyTime    = DateTime.Parse(this.txtModifyTime.Text);
            string   Tags          = this.txtTags.Text;


            NoName.NetShop.Model.NewsModel model = new NoName.NetShop.Model.NewsModel();
            model.NewsType      = NewsType;
            model.Status        = Status;
            model.Title         = Title;
            model.SubTitle      = SubTitle;
            model.Brief         = Brief;
            model.Content       = Content;
            model.SmallImageUrl = SmallImageUrl;
            model.Author        = Author;
            model.From          = From;
            model.VideoUrl      = VideoUrl;
            model.ImageUrl      = ImageUrl;
            model.ProductId     = ProductId;
            model.InsertTime    = InsertTime;
            model.ModifyTime    = ModifyTime;
            model.Tags          = Tags;

            NoName.NetShop.BLL.NewsModelBll bll = new NoName.NetShop.BLL.NewsModelBll();
            bll.Update(model);
        }
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            string strErr="";
            if(!PageValidate.IsNumber(txtNewsType.Text))
            {
            strErr+="NewsType�������֣�\\n";
            }
            if(!PageValidate.IsNumber(txtStatus.Text))
            {
            strErr+="Status�������֣�\\n";
            }
            if(this.txtTitle.Text =="")
            {
            strErr+="Title����Ϊ�գ�\\n";
            }
            if(this.txtSubTitle.Text =="")
            {
            strErr+="SubTitle����Ϊ�գ�\\n";
            }
            if(this.txtBrief.Text =="")
            {
            strErr+="Brief����Ϊ�գ�\\n";
            }
            if(this.txtContent.Text =="")
            {
            strErr+="Content����Ϊ�գ�\\n";
            }
            if(this.txtSmallImageUrl.Text =="")
            {
            strErr+="SmallImageUrl����Ϊ�գ�\\n";
            }
            if(this.txtAuthor.Text =="")
            {
            strErr+="Author����Ϊ�գ�\\n";
            }
            if(this.txtFrom.Text =="")
            {
            strErr+="From����Ϊ�գ�\\n";
            }
            if(this.txtVideoUrl.Text =="")
            {
            strErr+="VideoUrl����Ϊ�գ�\\n";
            }
            if(this.txtImageUrl.Text =="")
            {
            strErr+="ImageUrl����Ϊ�գ�\\n";
            }
            if(this.txtProductId.Text =="")
            {
            strErr+="ProductId����Ϊ�գ�\\n";
            }
            if(!PageValidate.IsDateTime(txtInsertTime.Text))
            {
            strErr+="InsertTime����ʱ���ʽ��\\n";
            }
            if(!PageValidate.IsDateTime(txtModifyTime.Text))
            {
            strErr+="ModifyTime����ʱ���ʽ��\\n";
            }
            if(this.txtTags.Text =="")
            {
            strErr+="Tags����Ϊ�գ�\\n";
            }

            if(strErr!="")
            {
            MessageBox.Show(this,strErr);
            return;
            }
            int NewsType=int.Parse(this.txtNewsType.Text);
            int Status=int.Parse(this.txtStatus.Text);
            string Title=this.txtTitle.Text;
            string SubTitle=this.txtSubTitle.Text;
            string Brief=this.txtBrief.Text;
            string Content=this.txtContent.Text;
            string SmallImageUrl=this.txtSmallImageUrl.Text;
            string Author=this.txtAuthor.Text;
            string From=this.txtFrom.Text;
            string VideoUrl=this.txtVideoUrl.Text;
            string ImageUrl=this.txtImageUrl.Text;
            string ProductId=this.txtProductId.Text;
            DateTime InsertTime=DateTime.Parse(this.txtInsertTime.Text);
            DateTime ModifyTime=DateTime.Parse(this.txtModifyTime.Text);
            string Tags=this.txtTags.Text;

            NoName.NetShop.Model.NewsModel model=new NoName.NetShop.Model.NewsModel();
            model.NewsType=NewsType;
            model.Status=Status;
            model.Title=Title;
            model.SubTitle=SubTitle;
            model.Brief=Brief;
            model.Content=Content;
            model.SmallImageUrl=SmallImageUrl;
            model.Author=Author;
            model.From=From;
            model.VideoUrl=VideoUrl;
            model.ImageUrl=ImageUrl;
            model.ProductId=ProductId;
            model.InsertTime=InsertTime;
            model.ModifyTime=ModifyTime;
            model.Tags=Tags;

            NoName.NetShop.BLL.NewsModelBll bll=new NoName.NetShop.BLL.NewsModelBll();
            bll.Update(model);
        }