One of the most basic ways to navigate within an application is by use of a
tab control. Tabs are easy to use and users are very familiar with them.
There have been many implementations of tab controls for Web applications,
but they had often required advanced client-side script that was only
supported in a few browsers, or they required extensive and confusing
server-side include files. ASP.NET 2.0 provides a few things that make this
easier to do with no dependency on functional code. In this article I'll show
you how you can use the new features of ASP.NET 2.0 to easily create a tab
control for your Web application.
To get started, create a new Web site (use your favorite language) on your
computer and call it TabDemo. ASP.NET 2.0 introduces a new set of data
providers and controls based on the notion of a site map. The site map is the
central data store for sit... (more)