Showing posts with label studio. Show all posts
Showing posts with label studio. Show all posts

Monday, March 26, 2012

Tab control Error

I am new to AJAX, I have downloaded the ASP.Net AJAX and installed it also add dll to my Visual Studio Environment Now I need to use tab control but when I place it on my VS Environment It gives me an errorError Rendering Controlall other controls are working. Can you please advice me.

Regards,

Asif

i got this error too.. what you have to do is open your source code and re-arrange the tags like following:

<asp:ScriptManagerid="ScriptManager1"runat="server">
</asp:ScriptManager>

<cc1:TabContainerID="TabContainer1"runat="server">
<cc1:TabPanelID="TabPanel1"HeaderText="your header text #1"runat="server">
<ContentTemplate>
<!--

your web form controls goes here

-->

</ContentTemplate>
</cc1:TabPanel><cc1:TabPanelID="TabPanel2"HeaderText="your header text #2"runat="server">
<ContentTemplate>
<!--

your web form controls goes here

-->

</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer><br/>

the panel control must be inside in TabContainer control

Wednesday, March 21, 2012

TabContainer and Tab Panel for Beginners

Good Morning Everyone,

I'm a noob to the whole visual studio 2005, ASP.net, and AJAX.net thing. I've been searching on a walkthrough or tutorial on how to properly use the Tabs component in the ajax toolkit, but haven't found much yet. If anyone could point me in the right direction that would be great.

Cheers

Here's an instructional video:

TabPanel instructional video: http://aspalliance.com/1175_Video_Using_the_ASPNET_AJAX_Tabs_Control



Thanks for the video! But unfortunately my computer at work is a tad on the older side and unfortunately won't play the video link. I will watch it at home this weekend and see what I can learn. By chance do you know of any text tutorials for tabs?

TabContainer in an UpdatePanel (.NET 3.5)

I have recently upgraded a website from ASP.NET 2.0 and the appropriate AJAX Control Toolkit to use .NET 3.5 (with Visual Studio 2008 Beta 2) and the AJAX Control Toolkit that is available for the version. My website has several pages with a TabContainer inside an UpdatePanel. However now when an asynchronous postback occurs from buttons either inside the TabContainer or outside the TabContainer, the entire TabContainer seems to flicker. Note that only the TabContainer and it's contents seem to flicker and not the other contents outside of the TabContainer. Is anyone else experiencing results like this?

Thanks,

Kyle

I am experiencing the exact same problem. I have a tab container inside one update panel. I had no problems doing this on 2.0. I upgraded to 3.5 and on my new project my entire tab container is redrawn on every post back. When I click on a new tab, the content appears instantly, then it quickly redraws. Not sure if this is a bug, but cannot find any answers. Thanks for any help.

Wayne