C# – How to create a Dropdown button in asp.net c#

asp.netc

Does anyone know the name of the property in which it look alike button
but once if we keep the mouse pointer
on it then it will show like dropdown
list options.
I want to use that in my asp.net
project.

Best Answer

There is no out of the box control as such. It is an effect achieved either using javascript or CSS

Take a look at this example http://demos.9lessons.info/DropMenu/MyDemo.html

You should also search for jquery plugins for this. Though you will get readymade code for it but it will surely not be a server side control. You have choice of either creating a user control or just use it as it is.