Esempio n. 1
0
 private void ShowInfo(int Id)
 {
     Maticsoft.BLL.ArticleManagement   bll   = new Maticsoft.BLL.ArticleManagement();
     Maticsoft.Model.ArticleManagement model = bll.GetModel(Id);
     this.lblId.Text         = model.Id.ToString();
     this.lblTitle.Text      = model.Title;
     this.lblKeyword.Text    = model.Keyword;
     this.lblContent.Text    = model.Content;
     this.lblImage.Text      = model.Image;
     this.lblUploadtime.Text = model.Uploadtime.ToString();
 }