protected void grdData_RowEditing(object sender, GridViewEditEventArgs e) { grdData.EditIndex = e.NewEditIndex; BindGrid(); GridViewRow grow = (GridViewRow)grdData.Rows[e.NewEditIndex]; DropDownList ddl = new DropDownList(); ddl = (DropDownList)grow.FindControl("ddlCat"); ddl.DataSource = GetCategory(); ddl.DataTextField = "categoryname"; ddl.DataValueField = "categoryid"; ddl.DataBind(); string str = ViewState["cat"].ToString(); ddl.Items.FindByText(str).Selected = true; }
0 comments:
Post a Comment