I'm using AJAX Control Toolkit v15.1, asp.net v4.5.1 vs.net 2012 VB code. Everything is up-to-date. I'm using the tabcontainer tool from the AJAX toolkit. And when I run my web app in localhost mode, everything works fine in Chrome and IE.
I publish my code to my IIS web server & view it in Chrome. Runs great! Very happy! But I must test it in IE so I fire up IE 11. When IE 11 launches only the top part of my web app loads. The bottom 75%, which houses the tabcontainer and 11 tabs, does not show up.
I've been reading about changing asp:Scriptmanager to ajaxToolkit:toolkitScriptManager (which doesn't work by the way. It doesn't recognize that tag at all. Immediately throws an error! I think that may have been a fix 4+ years ago because that's when that fix was posted but does not apply today.)
Here is my code on what I think would be of value in troubleshooting: (in my .aspx file)
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>
The beginning of my tabcontainer code:
<cc1:TabContainer ID="tabContainer" runat="server" Width="1723px" Height="568px" AutoPostBack="true" ActiveTabIndex="7">
<cc1:TabPanel ID="BackupSchedule" runat="server" >
<HeaderTemplate>
<asp:Label ID="Label3" runat="server" Text="Backup Job Schedule" />
</HeaderTemplate>
I'd rather not force people to use Chrome. That's the easy way out. I'd rather fix this and not have to worry about it.