Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:

Hi,

I want to add hover menu effect on Dropdownlist control used in my solution. Please refer me suitable posts..
thanks..
Posted

1 solution

Try this...[^]

If the events don't work for you, you may have to do something on Page_Load like this:

C#
myDropDownList.Attributes.Add("onmouseover", "open()");
myDropDownList.Attributes.Add("onmouseout", "close()");


where open() and close() are javascript functions.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900