Answer: We can get Dropdown list SelectedText in 2 ways:-
There is a Dropdown list
SelectedItem property by which we can get Dropdown list selected item text.
For Example:-
Dim text1 As String = DropDownList1.SelectedItem.Text
Dim text2 As String = DropDownList1.Text
Asked In: Many Interviews |
Alert Moderator