---
title: "Dropdown Menu in ASP.NET"  
description: "Dropdown Menu in ASP.NET"  
author: "John Smith"  
published: 2010-09-30  
updated: 2018-05-23  
canonical: https://www.mindstick.com/forum/11/dropdown-menu-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# Dropdown Menu in ASP.NET

I am working on [dropdown menu](https://www.mindstick.com/forum/158697/how-can-implement-a-dropdown-menu-or-navigation-bar-with-hover-effects-using-jquery) in ASP.NET.\
On [mouse](https://yourviews.mindstick.com/story/5122/the-story-behind-lord-ganesha-s-mouse-mushak) over I like to change back [color](https://www.mindstick.com/articles/77/how-to-split-form-background-color-in-c-sharp) of that particular Menu.\
I really appreciate if you provide me line of code.\
\

## Replies

### Reply by Anonymous User

hi,

You can also check following link:

[https://stackoverflow.com/questions/9918184/simplest-way-to-create-drop-down-menu-on-a-web-page](https://stackoverflow.com/questions/9918184/simplest-way-to-create-drop-down-menu-on-a-web-page)

### Reply by Anonymous User

Hello John,\
\
You can change back color of [dropdown](https://www.mindstick.com/articles/263/ajax-toolkit-dropdownextender-in-asp-dot-net) menu by setting it hover property back color.\
\

```
<asp:Menu ID="Menu1" runat="server" Orientation="Horizontal"><DynamicHoverStyle BackColor="Yellow" /><Items><asp:MenuItem Text="Item1" Value="Item1"><asp:MenuItem Text="New Item1" Value="New Item1"></asp:MenuItem><asp:MenuItem Text="New Item2" Value="New Item2"></asp:MenuItem><asp:MenuItem Text="New Item3" Value="New Item3"></asp:MenuItem></asp:MenuItem><asp:MenuItem Text="Item2" Value="Item2"><asp:MenuItem Text="New Item1" Value="New Item1"></asp:MenuItem><asp:MenuItem Text="New Item2" Value="New Item2"></asp:MenuItem></asp:MenuItem></Items></asp:Menu>
```

### Reply by Amit Singh

we add the css on onmouseover="function colorChange(this)"\

```
<script>
function colorChange(obj)
{
obj.style.backgroundColor="red";
}
</script>
```


---

Original Source: https://www.mindstick.com/forum/11/dropdown-menu-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
