DropDownList SelectedIndexChange Not Firing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help. I am attaching both the html stuff as well as the code snippet that is not firing. Can someone please help me
Thank

Sub InputPub_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) _ HandlesInputPub.SelectedIndexChange
Dim PubNew, AdTypeNew As Strin

ComboBoxLostFocus(InputPub
PubNew = ComboBoxCurrentCode(InputPub
AdTypeNew = ComboBoxCurrentCode(AdType
SetComboBoxText(AdType, "ADTP", msPubSave.Value, "", "", "", 2, False

End Su

<TD><asp:dropdownlist id="InputPub" tabIndex="3" runat="server" EnableViewState="False" CssClass="DropDownList
BackColor="#f5f5f5" onload="InputPub_Load" SelectedIndexChanged="InputPub_SelectedIndexChanged"></asp:dropdownlist></TD>
 
I need help. I am attaching both the html stuff as well as the code snippet that is not firing. Can someone please help me.
Thanks

Sub InputPub_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) _ HandlesInputPub.SelectedIndexChanged
Dim PubNew, AdTypeNew As String

ComboBoxLostFocus(InputPub)
PubNew = ComboBoxCurrentCode(InputPub)
AdTypeNew = ComboBoxCurrentCode(AdType)
SetComboBoxText(AdType, "ADTP", msPubSave.Value, "", "", "", 2, False)

End Sub

<TD><asp:dropdownlist id="InputPub" tabIndex="3" runat="server" EnableViewState="False" CssClass="DropDownList"
BackColor="#f5f5f5" onload="InputPub_Load" SelectedIndexChanged="InputPub_SelectedIndexChanged"></asp:dropdownlist></TD>

Check the InputPub.AutoPostBack. Set it to true.
 
Back
Top