تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح Part 153 Menu control in asp net ضمن كورس ASP.net شرح قناة kudvenkat، الفديو رقم 153 مجانى معتمد اونلاين
Text version of the video
http://csharp-video-tutorials.blogspot.com/2013/10/part-153-menu-control-in-aspnet.html
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation1
Slides
http://csharp-video-tutorials.blogspot.com/2014/10/menu-control-in-aspnet.html
All ASP .NET Text Articles
http://csharp-video-tutorials.blogspot.com/p/free-aspnet-video-tutorial.html
All ASP .NET Slides
http://csharp-video-tutorials.blogspot.com/p/aspnet-slides.html
ASP.NET Playlist
https://www.youtube.com/playlist?listPL4cyC4G0M1RQcB4IYS_zwkyBwMyx5AnDM
All Dot Net and SQL Server Tutorials in English
https://www.youtube.com/user/kudvenkat/playlists?view1&sortdd
All Dot Net and SQL Server Tutorials in Arabic
https://www.youtube.com/c/KudvenkatArabic/playlists
As the name speaks for itself, Menu control in asp.net is used to display a menu in an asp.net web application.
The content for the Menu control can be specified directly in the control or the menu control can be bound to a datasource. We will discuss databinding in a later video session.
In this video, let's discuss specifying the contents directly in the control. A Menu control is a collection of MenuItem objects.
By default, the menu control is displayed using vertical orientation. If you want to change its orientation to Horizontal, use Orientation property.
By default, StaticDisplayLevels Property is set to 1. This means only the first level is statically displayed. If you want 2 levels to be displayed statically, you would set this property to 2.
To control the amount of time it takes for the dynamically displayed portion of a menu to disappear, use DisappearAfter property. This is in milliseconds. If you want the menu to disappear after 2 seconds, you would set it to 2000 milliseconds.