I want to thank David Anson of Microsoft for finding the solution to this problem. Here was our thread:
Thank you David, that was exactly the problem. The TabContainer is displaying properly now. My menus are a little bit off in DotNetNuke, but I'm going to work on fixing the skin rather than going back to the other doctype.
For those who want to know, here is where the fix needs to happen. In Default.aspx.vb at about line 259, I changed the DocTypeValue from:
'Dim DocTypeValue As String = "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">"
to:
Dim DocTypeValue As String = "<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" "" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">"
once again, thank you!
Nick
- Hide quoted text -
On Dec 4, 2007 10:11 PM, David Anson wrote:
The DOCTYPEs are subtly different and I'm wondering if the problematic one is leaving the browser in quirks mode (according to my understanding of the last paragraph of http://msdn2.microsoft.com/en-us/library/ms535242.aspx). If so, that could be the problem as we don't support quirks mode with the Toolkit. Maybe try switching to the same DOCTYPE for both to see if that helps?