Wanted in ASP.NET 2.0: Tab control

  • Thread starter Thread starter Jon Davis
  • Start date Start date
J

Jon Davis

One can accomplish the equivalent of a tab control by showing/hiding various
panels according to the user clicking on hyperlinks or buttons, but it would
be nice if Microsoft put forth the effort to create a web site tab control,
to cover the various browsers, as well as offer both a couple default
display styles as well as offer the ability to customize the style.

Web site tab interfaces are commonplace on the Web today, arguably as
commonplace as in windows applications (since there are far more web sites
out there than Windows apps).

Sure would make my life easier if I knew that this feature was a built-in
feature of ASP.NET 2.0.

Jon
 
Jon:

This control is already available. Check out www.asp.net - theres a download
for it there (along with a Treeview control, and a couple others).
 
its really not that tough to do yourself.
We just used a UC and pass in the panel/control name for each tab. The
postback hides/shows the right control/panel that way. We also allowed a
non-postback that uses clientside span tags set to visible/none for the
display style. all works fairly well, and looks decent.
 
That's IE-specific. Did I not make it clear that cross-browser compatibility
is one of the whole points of the necessity?

Jon
 
Back
Top