but I don't know why it doesn't work on my project. I just want to call javascript function when the dropdownlist change selection. I search the web Dropdown using javascript onchange and modified my code but it still doesn't work. Can someone tell me how to I call javascritp with clientID as parameter on dropdownlist change selection. Thanks in advance.
There is my code
<asp:dropdownlist id="dropL" runat="server" onchange="setNote()" > </asp:dropdownlist>
function setNote() {
alert ('ol');
}