I have a menu control, it has the items and child items
item-->8051
childitems-->programmers,developmentboards,projectboards,flashmagicsupport
when mouseover on item the child items list should dispaly with out any click
**********************************************************
And also i want same for the linkbutton, means i will have a linkbutton with text 8051 when mouse is on the button the childitems list mentioned above
should display
please help me on the above two requirements
Marimuthu ArigovindasamyPosted Jun 21, 2010, 9:31 PM
<asp:Menu ID="Menu2" runat="Server" DataSourceID="SiteMapDataSource1" Orientation="Vertical"
BackColor="#B5C7DE" DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="0.8em"
ForeColor="#284E98" StaticDisplayLevels="1" StaticSubMenuIndent="10px">
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<DynamicHoverStyle BackColor="#284E98" ForeColor="White" />
<DynamicMenuStyle BackColor="#B5C7DE" />
<StaticSelectedStyle BackColor="#507CD1" />
<DynamicSelectedStyle BackColor="#507CD1" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<StaticHoverStyle BackColor="#284E98" ForeColor="White" />
asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="Server" />
web.sitemap file:
xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="AAA.aspx" title="AAA">
<siteMapNode url="BBB.aspx" title="BBB">
<siteMapNode url="DDD.aspx" title="DDD"/>
<siteMapNode url="EEE.aspx" title="EEE"/>
siteMapNode>
<siteMapNode url="CCC.aspx" title="CCC"/>
siteMapNode>
siteMap>