Пример #1
0
        protected void cmdView_Click1(object sender, ImageClickEventArgs e)
        {
            SessionUserLogin nUserLogin = (SessionUserLogin)Session["UserLogin"];
            DataTable        nTable     = Cooperative_Data.GetList(int.Parse(txtKey.Text));

            if (nTable.Rows.Count == 0)
            {
                nTable.Rows.Add(0, "");
            }
            GV_Cooperative.DataSource = nTable;
            GV_Cooperative.DataBind();
            //LoadPages();
        }
Пример #2
0
        public void LoadData()
        {
            SessionUserLogin nUserLogin = (SessionUserLogin)Session["UserLogin"];
            DataTable        nTable     = Cooperative_Data.GetList(int.Parse(txtKey.Text));

            if (nTable.Rows.Count == 0)
            {
                nTable.Rows.Add(0, "");//, null, "", 0, 0, 0, "", "", "", "", 0);
            }
            nTable.Columns.Add();
            GV_Cooperative.DataSource = nTable;
            GV_Cooperative.DataBind();
            DateTime dt = DateTime.Now;
        }
Пример #3
0
        protected void GrDelete(object sender, CommandEventArgs e)
        {
            SessionUserLogin nUserLogin = (SessionUserLogin)Session["UserLogin"];

            nUserLogin.CheckRole("CA0014");
            if (!nUserLogin.Role.Del)
            {
                Response.Write("<script >alert('Bạn không có quyền xóa danh mục này!')</script>");
            }
            else
            {
                try
                {
                    string mKey = (e.CommandArgument.ToString());
                    ListCooperative_Info info = new ListCooperative_Info(txtKey.Text, mKey);
                    //if ((DateTime.Now - info.DatetimeBuy).TotalDays > 7)
                    //{
                    //    Response.Write("<script >alert('Dữ liệu đã quá 7 ngày, không được phép xóa!')</script>");
                    //}
                    //else
                    {
                        info.Delete();
                        DataTable nTable = Cooperative_Data.GetList(int.Parse(txtKey.Text.ToString()));//.GetLits();''xtKey.Text));
                        if (nTable.Rows.Count == 0)
                        {
                            nTable.Rows.Add(0, "");
                        }
                        GV_Cooperative.DataSource = nTable;
                        GV_Cooperative.DataBind();
                        //LoadPages();
                    }
                }
                catch
                {
                    Response.Write("<script >alert('Có lỗi gì đó vui lòng thử lại!')</script>");
                }
            }
        }