DutyTypeSetting.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. using System.Web;
  7. using System.Web.Security;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. using System.Web.UI.HtmlControls;
  12. public partial class Dutys_DutyTypeSetting : System.Web.UI.Page
  13. {
  14.     /// <summary>
  15.     /// 模板 
  16.     /// </summary>
  17.     Model.DutyTypes MD = new Model.DutyTypes();
  18.     /// <summary>
  19.     /// 业务
  20.     /// </summary>
  21.     BLL.DutyTypes BD = new BLL.DutyTypes();
  22.     protected void Page_Load(object sender, EventArgs e)
  23.     {
  24.         LoginLogic.MatchLoad("../", "Dutys_DutyTypeSetting");
  25.         if (!IsPostBack)
  26.         {
  27.             MyDataBind();
  28.         }
  29.     }
  30.     protected void Button1_Click(object sender, EventArgs e)
  31.     {
  32.         try
  33.         {
  34.             if (String.IsNullOrEmpty(KeyValue_LBMC.Text.Trim()))
  35.             {
  36.                 throw new Exception("值班类别不能为空!");
  37.             }
  38.             MD.LBMC = KeyValue_LBMC.Text;
  39.             BD.Add(MD);
  40.             MyDataBind();
  41.             MessageBox.Show("添加成功!");
  42.             KeyValue_LBMC.Text = "";
  43.         }
  44.         catch (Exception exp)
  45.         {
  46.             MessageBox.Show(exp.Message);
  47.         }
  48.     }
  49.     protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
  50.     {
  51.         for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
  52.         {
  53.             CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl("CheckBoxItem");
  54.             if (CheckBox1.Checked)
  55.             {
  56.                 cbox.Checked = true;
  57.             }
  58.             else
  59.             {
  60.                 cbox.Checked = false;
  61.             }
  62.         }
  63.     }
  64.     protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  65.     {
  66.         for (int i = 0; i < GridView1.Rows.Count; i++)
  67.         {
  68.             //首先判断是否是数据行
  69.             if (e.Row.RowType == DataControlRowType.DataRow)
  70.             {
  71.                 //当鼠标停留时更改背景色
  72.                 e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#F0F0F0'");
  73.                 //当鼠标移开时还原背景色
  74.                 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
  75.             }
  76.         }
  77.     }
  78.     /// <summary>
  79.     /// 获取信息
  80.     /// </summary>
  81.     /// <param name="pidx">页号</param>
  82.     public void MyDataBind()
  83.     {
  84.         List<Model.DutyTypes> LRData = BD.GetList();
  85.         if (LRData.Count == 0)
  86.         {
  87.             Model.DutyTypes MD = new Model.DutyTypes();
  88.             LRData.Add(MD);
  89.         }
  90.         GridView1.DataSource = LRData;
  91.         GridView1.DataBind();
  92.     }
  93.     protected void DelButton1_Click(object sender, EventArgs e)
  94.     {
  95.         try
  96.         {
  97.             for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
  98.             {
  99.                 CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl("CheckBoxItem");
  100.                 if (cbox.Checked)
  101.                 {
  102.                     int Id = int.Parse(GridView1.Rows[i].Cells[1].Text.ToString());
  103.                     BD.Delete(Id);
  104.                 }
  105.                 else
  106.                 {
  107.                     
  108.                 }
  109.             }
  110.             MessageBox.Show("删除完成!");
  111.         }
  112.         catch (Exception exp)
  113.         { MessageBox.Show(exp.Message); }
  114.         MyDataBind();
  115.     }
  116. }