protected void BtnSerach_Click1(object sender, EventArgs e) { DataSet ds = MahsolDaramadClass.GetList(null, null, null, null, null, null); DataView dv = new DataView(ds.Tables[0]); String StrSort = Securenamespace.SecureData.CheckSecurity(ViewState["MahsolDaramad"].ToString()); if (StrSort != null) { dv.Sort = StrSort; } GridView1.DataSource = dv; GridView1.DataBind(); }
public void BindGrid() { DataSet ds = MahsolDaramadClass.GetList(null, null, null, null, null, null); DataView dv = new DataView(ds.Tables[0]); //if (Securenamespace.SecureData.CheckSecurity(ViewState["MahsolDaramad"].ToString()) == null) //{ // ViewState["MahsolDaramad"] = "id Desc"; //} //dv.Sort = Securenamespace.SecureData.CheckSecurity(ViewState["MahsolDaramad"].ToString()).ToString(); GridView1.DataSource = dv; GridView1.DataBind(); }
public void UpItem(object sender, EventArgs e) { String id = ((HtmlAnchor)sender).HRef.ToString(); DataSet ds = MahsolDaramadClass.GetList(id, null, null, null, null, null); DataRow dr = ds.Tables[0].Rows[0]; TXTid.Text = id; TXTMizan.Text = dr["Mizan"].ToString(); TXTMony.Text = dr["Mony"].ToString(); DDAgeid.SelectedValue = dr["Ageid"].ToString(); DDTreeType.SelectedValue = dr["TreeType"].ToString(); DDyear.SelectedValue = dr["year"].ToString(); EmptyLight(); LightBox.Value = "1"; BtnInsert.Visible = false; BtnSerach.Visible = false; BtnUpdate.Visible = true; }