private void Load_EnterpriseServiceConten(string strType)
 {
     titleName.Text = Get_EnterpriseServiceName(strType);
     zlzw.BLL.EnterpriseServiceInfoListBLL enterpriseServiceInfoListBLL = new zlzw.BLL.EnterpriseServiceInfoListBLL();
     System.Data.DataTable dt = enterpriseServiceInfoListBLL.GetList("EnterpriseServiceTypeGUID='" + strType + "'").Tables[0];
     labContent.Text = dt.Rows[0]["EnterpriseServiceInfoContent"].ToString();
 }
        private void EnterpriseServiceInfoList_BindGrid()
        {
            zlzw.BLL.EnterpriseServiceInfoListBLL enterpriseServiceInfoListBLL = new zlzw.BLL.EnterpriseServiceInfoListBLL();
            DataTable dt = enterpriseServiceInfoListBLL.GetList(grid1.PageSize, grid1.PageIndex + 1, "*", "PublishDate", 0, "desc", "IsEnable=1").Tables[0];

            grid1.DataSource = dt;
            grid1.DataBind();
        }
 /// <summary>
 /// 获取总页数
 /// </summary>
 /// <returns></returns>
 private int Get_EnterpriseServiceInfoListTotalCount()
 {
     zlzw.BLL.EnterpriseServiceInfoListBLL enterpriseServiceInfoListBLL = new zlzw.BLL.EnterpriseServiceInfoListBLL();
     DataTable dt = enterpriseServiceInfoListBLL.GetList("IsEnable=1").Tables[0];
     if (dt.Rows.Count > 0)
     {
         return dt.Rows.Count;
     }
     else
     {
         return 0;
     }
 }
        protected void btnDel_Click(object sender, EventArgs e)
        {
            if (grid1.SelectedRowIndexArray != null && grid1.SelectedRowIndexArray.Length > 0)
            {
                string strSelectID = "0";
                for (int i = 0, count = grid1.SelectedRowIndexArray.Length; i < count; i++)
                {
                    int rowIndex = grid1.SelectedRowIndexArray[i];
                    foreach (object key in grid1.DataKeys[rowIndex])
                    {
                        strSelectID = key.ToString();
                    }
                }
                #region 删除逻辑

                zlzw.BLL.EnterpriseServiceInfoListBLL enterpriseServiceInfoListBLL = new zlzw.BLL.EnterpriseServiceInfoListBLL();
                DataTable dt = enterpriseServiceInfoListBLL.GetList("EnterpriseServiceInfoGUID='" + strSelectID + "'").Tables[0];
                zlzw.Model.EnterpriseServiceInfoListModel enterpriseServiceInfoListModel = enterpriseServiceInfoListBLL.GetModel(int.Parse(dt.Rows[0]["EnterpriseServiceInfoID"].ToString()));
                enterpriseServiceInfoListModel.IsEnable = 0;
                enterpriseServiceInfoListBLL.Update(enterpriseServiceInfoListModel);
                EnterpriseServiceInfoList_BindGrid();

                #endregion
            }
            else
            {
                return;
            }
        }