I have a dropdown list on a web form. I want to be able to populate the page based upon the value of the "selectedValue". In ASP I would have an onchange event in the control. In ASPX I can see an event associated with the dropdown, "dropdown_SelectedIndexChanged".
When I run the page nothing happens. What am I doing wrong? Is there a better way? I even tried to use the OnSelectedIndexChanged event in the HTML but with the same results. TIA enak
enak
Contributor
2185 Points
446 Posts
firing an event in dropdown list
Aug 04, 2003 07:41 PM|LINK
kashif
Contributor
2748 Points
547 Posts
Microsoft
Re: firing an event in dropdown list
Aug 04, 2003 08:11 PM|LINK
if (!IsPostBack) { //databinding code for selection list }Hope that helps Kashifpcdanno
Participant
1932 Points
399 Posts
Re: firing an event in dropdown list
Aug 04, 2003 08:21 PM|LINK