ASP.NET Tab Controls

I'm currently trying to create a tabbed interface in a web application, and based on my search in ASP.NET there are no built-in tab controls. There are some downloadable toolkits in ASP.NET AJAX , as well as a wealth of “pay-per-use” third-party tab controls.

My question is: what tab did you use for ASP.NET applications and why do you use it?

+4
source share
4 answers

You can use MultiView / Views and your own navigation to get tabs in ASP.NET.

+6
source

I have used AJAX TabControl in the past and I like it. This is pretty straight forward. Easy enough to get to the active tab and its contents.

+2
source

I used the Rad TabStrip control of Telerik, and this, in my opinion, is one of the best.

+2
source

We use multi-user clips most of the time or, in some cases, we create our own tab controls from a combination of link buttons and overlapping panels and change their visibility based on which link button was clicked (this may seem primitive, but it works well) .

+1
source

All Articles