Thursday, December 22, 2011

How to change SelectedIndex of Dropdownlist in Javascript


var oDDL = document.getElementById('<%=YourDropDownListID.ClientID%>');
oDDL.selectedIndex = 0;

No comments:

Post a Comment