Hi All
I have a similar problem as described in thread855-692299
. It didn't solve my error so I'm describing the error I'm getting.
I have a dropdown list which is db-bound and has the autopostback set to true. When
the application runs, the ddl gets all the data etc. But on selecting an item from the list, IE throws a JS error in the status bar - Error:
Object doesn't suport this property or method.
here's a sample code:
<asp:dropdownlist id="lstType" runat="server" autopostback=True
OnSelectedIndexChanged=lstType_SelectedIndexChanged"></asp:dropdownlist>
On page-behind ,
Sub lstType_SelectedIndexChanged(ByVal Sender as Object, byVal e As
System.Eventargs) Handles lstType.SelectedIndexChanged
......
End Sub
I have googled for any possible workwound/fix but no luck! I'm totally stuck with it. Can someone point me what's going wrong?
Thanks!
newmem
I have a similar problem as described in thread855-692299
. It didn't solve my error so I'm describing the error I'm getting.
I have a dropdown list which is db-bound and has the autopostback set to true. When
the application runs, the ddl gets all the data etc. But on selecting an item from the list, IE throws a JS error in the status bar - Error:
Object doesn't suport this property or method.
here's a sample code:
<asp:dropdownlist id="lstType" runat="server" autopostback=True
OnSelectedIndexChanged=lstType_SelectedIndexChanged"></asp:dropdownlist>
On page-behind ,
Sub lstType_SelectedIndexChanged(ByVal Sender as Object, byVal e As
System.Eventargs) Handles lstType.SelectedIndexChanged
......
End Sub
I have googled for any possible workwound/fix but no luck! I'm totally stuck with it. Can someone point me what's going wrong?
Thanks!
newmem