using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using WeiSha.Common; using Song.ServiceInterfaces; using Song.Entities; using WeiSha.WebControl; namespace Song.Site.Manage.Site { public partial class CustomService : Extend.CustomPage { protected void Page_Load(object sender, EventArgs e) { if (!this.IsPostBack) { BindData(null, null); } } /// /// 绑定列表 /// protected void BindData(object sender, EventArgs e) { try { Song.Entities.EmpAccount[] eas = null; eas = Business.Do().GetAll4Group(2); GridView1.DataSource = eas; GridView1.DataKeyNames = new string[] { "Acc_Id" }; GridView1.DataBind(); } catch (Exception ex) { Message.ExceptionShow(ex); } } /// /// 删除 /// /// /// protected void DeleteEvent(object sender, EventArgs e) { try { string keys = GridView1.GetKeyValues; foreach (string id in keys.Split(',')) { Business.Do().DelRelation4Emplyee(Convert.ToInt32(id)); } BindData(null, null); } catch (Exception ex) { Message.ExceptionShow(ex); } } #region 列表中的事件 /// /// 修改是否显示的状态 /// /// /// protected void sbShow_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.Notice entity = Business.Do().NoticeSingle(id); entity.No_IsShow = !entity.No_IsShow; Business.Do().Save(entity); BindData(null, null); } catch (Exception ex) { Message.ExceptionShow(ex); } } #endregion } }