i have already bind the DropDownlist control with database, on selection from DropDownlist it should display the data in grid
views:
21answers:
1
A:
assign the indexchanged event to the dropdown and populate and databind the grid in the eventhandler ...
MyDropDown.SelectedIndexChanged += new EventHandler(ClickDropReports);
protected void ClickDropReports(object sender, EventArgs e)
{
//this is the event handler where you do
//get the data for the GridView and databind it
}
YordanGeorgiev
2010-02-07 13:54:46