开发者

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

开发者 https://www.devze.com 2022-12-19 16:18 出处:网络
i have already bind the DropDownlist control with database, on selection from DropDownlist it sh开发者_运维百科ould display the data in gridassign the indexchanged event to the dropdown and populate a

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

精彩评论

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

关注公众号