Hi
Have two dropdowns Region and Location and when the region is selected the corresponding Location has to be populated.
I have given the cboregion_selectedIndexchanged method.
Which is as below:
Private Sub cboRegion_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboRegion.SelectedIndexChanged
With cboLocation
.Items.Clear()
.Enabled = True
End With
populatelocation()
End Sub
This is not getting fired atall, its a web form page.
Please help me as I am very new to this.
Thanks
Have two dropdowns Region and Location and when the region is selected the corresponding Location has to be populated.
I have given the cboregion_selectedIndexchanged method.
Which is as below:
Private Sub cboRegion_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboRegion.SelectedIndexChanged
With cboLocation
.Items.Clear()
.Enabled = True
End With
populatelocation()
End Sub
This is not getting fired atall, its a web form page.
Please help me as I am very new to this.
Thanks