ASP.net page:
Button click events will fire. However, SelectedItemChanged in ListBox will not be fired in listboxes in control or mainpage. Any idea why?
Also, comments in code turn color green but VWD still tries reading them as code.
Loading
ASP.net page:
Button click events will fire. However, SelectedItemChanged in ListBox will not be fired in listboxes in control or mainpage. Any idea why?
Also, comments in code turn color green but VWD still tries reading them as code.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
nagabhushan hegdePosted Mar 13, 2006, 9:20 PM
Hi,
In your problem it looks like you haven't sent AutoPostback="True" attribute for your ListBox. This is only the reason I could think of after reading your mail.
You need to set this to "True" in order to get SelectItemChanged event to get fired.
Thanks.