Esempio n. 1
0
 protected void btn_all_Click(object sender, EventArgs e)
 {
     this.NowAction = GetListAction.All;
     DgBind();
 }
Esempio n. 2
0
 protected void btn_search_Click(object sender, EventArgs e)
 {
     this.NowAction = GetListAction.ByNickName;
     DgBind();
 }
Esempio n. 3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack) {
         this.NowAction = GetListAction.All;
         BindGroupList();
         DgBind();
     }
     AdminPageStatic.RoleChecked(this);
 }