I am working on dropdown menu in ASP.NET.
On mouse over I like to change back color of that particular Menu.
I really appreciate if you provide me line of code.
Dropdown Menu in ASP.NET
9229
30-Sep-2010
Anonymous User
23-May-2018hi,
You can also check following link:
https://stackoverflow.com/questions/9918184/simplest-way-to-create-drop-down-menu-on-a-web-page
Anonymous User
01-Oct-2010You can change back color of dropdown menu by setting it hover property back color.
Amit Singh
30-Sep-2010<script> function colorChange(obj) { obj.style.backgroundColor="red"; } </script>