ASP.NET

How to customize the SiteMapPath navigation control in ASP.NET

The SiteMapPath control, described in the article: How to use the SiteMapPath navigation control in ASP.NET, is also fully customizable. The next table lists some of its most frequently configured properties:

 

Property

Description

ShowToolTips

If you don’t want the description text to appear when the user hovers over a part of the …

Learn more

How to use the SiteMapPath navigation control in ASP.NET

This article describes the third navigation control you can use in your project. This control is named SiteMapPath. You can find more information about two other controls from the article: How to bind a site map to the TreeView and Menu navigation controls in ASP.NET. The SiteMapPath control provides breadcrumb navigation, which means it shows the user’s current …

Learn more

How to define a site map in ASP.NET

ASP.NET ships with a single site map provider, named XmlSiteMapProvider which looks for an XML file named Web.sitemap in the root of the virtual directory and retrieves site map information from it. If you want to retrieve a site map from another location or in a custom format, you’ll need to create your own site map …

Learn more

How site maps work in ASP.NET

ASP.NET includes a set of navigation features that you can use to implement a navigation system in your web based project. ASP.NET navigation is flexible, configurable, and pluggable. It has three components:

– With first component you can define the navigational structure of your website. This part is the XML site map, which …

Learn more

How to use the Calendar control in ASP.NET page in VB.NET

You can use this control to create a functionally rich calendar box which shows one month at a time. The end user can move from month to month, select a date, and select a range of days when the multiple selections are allowed. You can change almost every part of the Calendar control by using its …

Learn more

How to use the Calendar control in ASP.NET page in C#

You can use this control to create a functionally rich calendar box which shows one month at a time. The end user can move from month to month, select a date, and select a range of days when the multiple selections are allowed. You can change almost every part of the Calendar control by using its …

Learn more

How to use the AdRotator control in ASP.NET page in VB.NET

By using the AdRotator control your ASP.NET web page randomly selects banner graphics from a list that is specified in an external XML schedule file. Before creating the control, you should define the XML schedule file, as shown in the next example:

 

<Advertisements>

<Ad>

<ImageUrl>ocom-larry-mark-cloud-banner-1641735.jpg

</ImageUrl>

<NavigateUrl> https://www.oracle.com/index.html </NavigateUrl>

<AlternateText> Oracle engineers …

Learn more

How to use the AdRotator control in ASP.NET page in C#

By using the AdRotator control your ASP.NET web page randomly selects banner graphics from a list that is specified in an external XML schedule file. Before creating the control, you should define the XML schedule file, as shown in the next example:

 

<Advertisements>

<Ad>

<ImageUrl>ocom-larry-mark-cloud-banner-1641735.jpg

</ImageUrl>

<NavigateUrl> https://www.oracle.com/index.html </NavigateUrl>

<AlternateText> Oracle engineers …

Learn more

How to use the BulletedList control in ASP.NET page

ASP.NET BulletedList control is the server-side equivalent of the <ul> (unsorted list) or <ol> (ordered list) elements. As with all list controls, you have to use the Items property to set the collection of items that should be displayed. The next table lists additional properties you can use to configure how the items are displayed:

 

Property

Learn more