views:

545

answers:

2

Hello,

I have already search for some time over the net on how to create an ASP .NET AJAX toolkit tab control which uses GridView inside, could anyone point me on how to do this?

Right now, our GUI team has already made a static tab control which is quite properly designed. I do not know how to use the tab with this. Any tutorial or link on using this combination could really help.

I am already converting back the GUI to a MultiView simulated tab control because I do not know how to access the tab control. anyway, I am just worried i would destroy the GUI made by GUI team in this process.

Thanks.

A: 

Here is how to use the existing Ajax Control Toolkit Tabs. If you are asking someone to make a custom tab control for you, good luck. :)

rick schott
nope. i am not asking for a custom tab control. i am just wondering how the built in GridView control of asp .net can fit to the asp .net tab control
Nassign
A: 

I already got this to work. Basically the Tab control is just a panel container that holds other AJAX control. Unlike the MultiView control which does a post back each time a new tab is clicked, the AJAX tab control allows the loading of lots of control to the client all at once. The data grid control is used as is via post back. The only draw back of ajax tab control is the whole set of controls are loaded on each post back.

Nassign