How to design
-
Actually I want to design menu like.. When we put mouse pointer on that label, list of subcategory is shown. Just like in this website, put mouse pointer on "Articles" or "Message Boards", without clicking the list is shown. How to do that??:confused: Plzz reply me.. Thank you...... Regards, Jay
-
Actually I want to design menu like.. When we put mouse pointer on that label, list of subcategory is shown. Just like in this website, put mouse pointer on "Articles" or "Message Boards", without clicking the list is shown. How to do that??:confused: Plzz reply me.. Thank you...... Regards, Jay
This has nothing to do with ASP.NET. It is created with JS. Search for DHTML menu and you will get plenty of samples. :)
Navaneeth How to use google | Ask smart questions
-
This has nothing to do with ASP.NET. It is created with JS. Search for DHTML menu and you will get plenty of samples. :)
Navaneeth How to use google | Ask smart questions
You can do this using javascript. In image tag use the property onmouseover="javascript:ShowMenu()" function ShowMenu() { var menu = $find("%= mnuName.ClientID %"); if (menu) { var item = menu.findItemByText("Ur menu item name"); if (item) { item.open(); } else { alert("Item with text '" + item + "' not found."); } } }
-
This has nothing to do with ASP.NET. It is created with JS. Search for DHTML menu and you will get plenty of samples. :)
Navaneeth How to use google | Ask smart questions
Erm, I beg to differ. What's wrong with the Menu control in ASP.NET? Unless he meant he really wanted to design a user control like the menu control, but I don't really see a point in reinventing the wheel.
var question = (_2b || !(_2b));