2010-02-07 1 views

답변

0

할당에 데이터를 표시한다 드롭 다운리스트에서 선택을 데이터베이스 DropDownList 컨트롤을 바인딩 드롭 다운에 indexchanged 이벤트 및 채우고 이벤트 핸들러 그리드 데이터 바인딩 ...

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 
} 
관련 문제