/// <summary>
 /// 修改
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void btnEnter_Click(object sender, EventArgs e)
 {
     Song.Entities.DownloadOS mm;
     if (id != 0)
     {
         mm = Business.Do <IContents>().DownloadOSSingle(id);
     }
     else
     {
         mm = new Song.Entities.DownloadOS();
     }
     mm.Dos_Name  = tbName.Text.Trim();
     mm.Dos_IsUse = cbIsUse.Checked;
     mm.Dos_Intro = tbIntro.Text.Trim();
     try
     {
         if (id != 0)
         {
             Business.Do <IContents>().DownloadOSSave(mm);
         }
         else
         {
             Business.Do <IContents>().DownloadOSAdd(mm);
         }
         Master.AlertCloseAndRefresh("操作成功!");
     }
     catch (Exception ex)
     {
         Master.Alert(ex.Message);
     }
 }
Example #2
0
 /// <summary>
 /// 修改是否显示的状态
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void sbUse_Click(object sender, EventArgs e)
 {
     try
     {
         StateButton ub    = (StateButton)sender;
         int         index = ((GridViewRow)(ub.Parent.Parent)).RowIndex;
         int         id    = int.Parse(this.GridView1.DataKeys[index].Value.ToString());
         //
         Song.Entities.DownloadOS entity = Business.Do <IContents>().DownloadOSSingle(id);
         entity.Dos_IsUse = !entity.Dos_IsUse;
         Business.Do <IContents>().DownloadOSSave(entity);
         BindData(null, null);
     }
     catch (Exception ex)
     {
         Message.ExceptionShow(ex);
     }
 }
 /// <summary>
 /// 设置初始界面
 /// </summary>
 private void fill()
 {
     try
     {
         Song.Entities.DownloadOS mm;
         if (id != 0)
         {
             mm = Business.Do <IContents>().DownloadOSSingle(id);
             cbIsUse.Checked = mm.Dos_IsUse;
         }
         else
         {
             mm = new Song.Entities.DownloadOS();
         }
         tbName.Text  = mm.Dos_Name;
         tbIntro.Text = mm.Dos_Intro;
     }
     catch (Exception ex)
     {
         Message.ExceptionShow(ex);
     }
 }