how to bind the data from dropdownlist when dropdown is in datagrid or gridview
-
hi all i have a dropdownlist in datagrid and have to populate it data in pageload along with grid.later i have to fire the ddlselectedindex when it is in grid
-
hi all i have a dropdownlist in datagrid and have to populate it data in pageload along with grid.later i have to fire the ddlselectedindex when it is in grid
Use the gridview's RowCreated Event.I just write a example and tested it: protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { GridView g = (GridView)sender; if (g.Rows.Count == 0) { return; } DropDownList ddl = (DropDownList)g.Rows[g.Rows.Count-1].FindControl("ddl"); if (ddl != null) { object[] array = new object[] { DateTime.Now.ToString() }; ddl.DataSource = array; ddl.DataBind(); } } When you get ddl you can do it yourself.:)
:^):^):^):^):^):^):^):^):^):^):^):^) :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::^):^):^):^)▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):^):^):^):^):^):^):^):^):^):^):^)
-
Use the gridview's RowCreated Event.I just write a example and tested it: protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { GridView g = (GridView)sender; if (g.Rows.Count == 0) { return; } DropDownList ddl = (DropDownList)g.Rows[g.Rows.Count-1].FindControl("ddl"); if (ddl != null) { object[] array = new object[] { DateTime.Now.ToString() }; ddl.DataSource = array; ddl.DataBind(); } } When you get ddl you can do it yourself.:)
:^):^):^):^):^):^):^):^):^):^):^):^) :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::^):^):^):^)▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):^):^):^):^):^):^):^):^):^):^):^)
I've forgotten to remind you that ddl is the DropDownList's id in the GridView.:-O
:^):^):^):^):^):^):^):^):^):^):^):^) :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::^):^):^):^)▒▒〓▒〓▒▒ :^):rose::^):^):^):^)▒〓〓〓〓〓▒ :^):rose::rose::rose::rose::rose:▒▒〓▒〓▒▒ :^):^):^):^):^):^):^):^):^):^):^):^)