Drop Down List
Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
Dim x As Integer
x = DropDownList1.SelectedItem.Value
Response.Write(x)
End Sub
The x value that i get is always the first value in the drop down list...it wont write any other value than the first item in the rop down list...anyone know how i can overcome this??thanks
|