davearia Posted July 20, 2005 Posted July 20, 2005 Hi All, Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not IsPostBack Then lblMetricOrImp.Text = metricStr Else End If End Sub Private Sub rdbMetricOrImp_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rdbMetricOrImp.SelectedIndexChanged If rdbMetricOrImp.SelectedIndex = 0 Then lblMetricOrImp.Text = metricStr Else lblMetricOrImp.Text = ImperialStr End If End Sub For some reason in my asp.net page when set a breakpoint on the SelectedIndexChanged of my radioButtonList I can see that the event never gets fired. Can anyone explain what I need to do to get this event to fire? Thanks, Dave. Quote
davearia Posted July 20, 2005 Author Posted July 20, 2005 Postback set to false by default. Changed that and it seems ok. Sorry about that. Thanks again, Dave. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.