예제 #1
0
        public void BindGrid()
        {
            DataSet  ds = SupplycClass.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();
        }
예제 #2
0
        public void UpItem(object sender, EventArgs e)
        {
            String  id = ((HtmlAnchor)sender).HRef.ToString();
            DataSet ds = SupplycClass.GetList(id, null, null, null, null);
            DataRow dr = ds.Tables[0].Rows[0];

            TXTSupplyId.Text           = id;
            TXTTitle.Text              = dr["Title"].ToString();
            TXTMoney.Text              = dr["Money"].ToString();
            DDSupplyType.SelectedValue = dr["SupplyType"].ToString();
            DDYear.SelectedValue       = dr["Year"].ToString();

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