Example #1
0
        protected void BtnSerach_Click1(object sender, EventArgs e)
        {
            DataSet  ds      = AbBahaClass.GetList(null, null, null, null, null);
            DataView dv      = new DataView(ds.Tables[0]);
            String   StrSort = Securenamespace.SecureData.CheckSecurity(ViewState["Abbaha"].ToString());

            if (StrSort != null)
            {
                dv.Sort = StrSort;
            }
            GridView1.DataSource = dv;
            GridView1.DataBind();
        }
Example #2
0
        public void BindGrid()
        {
            DataSet  ds = AbBahaClass.GetList(null, null, null, null, null);
            DataView dv = new DataView(ds.Tables[0]);

            //if (Securenamespace.SecureData.CheckSecurity(ViewState["Abbaha"].ToString()) == null)
            //{
            //    ViewState["Abbaha"] = "id Desc";
            //}
            //dv.Sort = Securenamespace.SecureData.CheckSecurity(ViewState["Abbaha"].ToString()).ToString();
            GridView1.DataSource = dv;
            GridView1.DataBind();
        }
Example #3
0
        public void UpItem(object sender, EventArgs e)
        {
            String  id = ((HtmlAnchor)sender).HRef.ToString();
            DataSet ds = AbBahaClass.GetList(id, null, null, null, null);
            DataRow dr = ds.Tables[0].Rows[0];

            TXTid.Text           = id;
            TXTmony.Text         = dr["mony"].ToString();
            TXThajmab.Text       = dr["hajmab"].ToString();
            TXTtekrarsalane.Text = dr["tekrarsalane"].ToString();
            DDyear.SelectedValue = dr["year"].ToString();

            EmptyLight();
            LightBox.Value    = "1";
            BtnInsert.Visible = false;
            BtnSerach.Visible = false;
            BtnUpdate.Visible = true;
        }