How to Access Selected Value Of a DropDownList In JavaScript:-
ddl.options[ddl.selectedIndex].value;
This is the way that I have found to access a DropDownList.
Thogh there is SelectedValue property of a dropdownList, It did not work.
ddl.options[ddl.selectedIndex].value;
This is the way that I have found to access a DropDownList.
Thogh there is SelectedValue property of a dropdownList, It did not work.