tags:

views:

24

answers:

2

I need to put two tabs on my aspx page (c#). Is there already done tabs control for aspx ?

A: 

There is no standard ASP.NET component, but you can use Microsoft's ASP.NET AjaxControlToolkit library. Here is the component

negative
A: 

Ajax has tabs you can use:

http://www.asp.net/ajax/ajaxcontroltoolkit/samples/tabs/tabs.aspx

jQuery also has tabs you could use, which in my opinion is the better choice:

http://jqueryui.com/demos/tabs/

In strictly ASP.NET you can use multiview, and make tabs, here is a tutorial for that:

http://www.codeproject.com/KB/custom-controls/TabControl.aspx

Jacob Nelson
i would recoomend jqueryui tabs
sassyboy