|
-
Jan 31st, 2003, 11:04 AM
#1
Thread Starter
Registered User
dropdown not working
I have a drop down list box that does not post back properly. When the drop down list item changes the OnSelectedIndexChanged event triggers it run the Page_Load subroutine with no problems, but it does not run the ddDetails_SelectedIndexChanged subroutine like it's suppose to. Does anyone know why? All my other drop downs work fine. I don't know what's happening. I do not get a run-time error. Drop down code is below
webcontrol:
<asp:dropdownlist id="ddDetails" runat="server" OnSelectedIndexChanged="ddDetails_SelectedIndexChanged" AutoPostBack="True">
code behind:
Sub ddDetails_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
getIt()
End Sub
James
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|