VB.Net Tab Control for Web Applications

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone have a recommendation for a web-based tab control that I can use
in my browser-based applications?

I have VS2005 but I do not see anything available?

Do I have to build my own or buy one?
 

The MultiView webcontrol is great - I use it a lot - but there is one caveat
with it...

Unlike the "old" method of hiding and unhiding divs, the MultiView renders
only those controls which reside in the current tab - moving from tab to tab
requires a postback. This can be a real pain if, like me, you like to do
client-side validation as a single operation.

The IE WebControls are also worth considering if the web app is to be
deployed on a closed intranet where all the client browser are IE...
http://msdn.microsoft.com/library/default.asp?url=/workshop/webcontrols/overview/overview.asp
 
Back
Top