asp.net.ph

Menu.ScrollDownImageUrl Property

System.Web.UI.WebControls Namespace   Menu Class


.NET Framework version 2.0

Returns or sets the URL to an image displayed in a dynamic menu to indicate that the user can scroll down for additional menu items.

Syntax


Inline <asp:menu scrolldownimageurl = strUrl ... >
Script Menu.ScrollDownImageUrl [ = strUrl ]

Property Value


strUrl The URL to an image displayed in a dynamic menu to indicate that the user can scroll down for additional menu items.

The property is read/write with no default value.

Remarks

Use the ScrollDownImageUrl property to specify an optional custom image to display at the bottom of each dynamic menu to indicate that the user can scroll down for additional menu items.

NOTE: This property applies only when the height of a dynamic menu is set and the menu's content exceeds the given height or is automatically clipped by the client browser.

You can specify alternate text for the image by setting the ScrollDownText property.

Example

The following example demonstrates how to use the ScrollDownImageUrl property to display a custom image indicating that the user can scroll down in a dynamic menu for additional menu items.

<asp:menu id = "navigationMenu"
   staticdisplaylevels=2
   staticsubmenuindent=10
   scrolldownimageurl = "~/images/scrolldownimage.jpg"
   scrolldowntext = "Down"
   scrollupimageurl = "~/images/scrollupimage.jpg"
   scrolluptext = "Up" 
   runat = "server">

   <dynamicmenustyle Height=50 />

   <items>
      ...
   </items>

</asp:menu>
See Also

Menu Members   ScrollUpImageUrl Skip Navigation Links




Previous page Back to top Next page

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note