开发者

i have already bind the dropdwonlist control with database, on selection from dropdown it shoulf display the data in grid

i have already bind the DropDownlist control with database, on selection from DropDownlist it sh开发者_运维百科ould display the data in grid


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 
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜