Ok so here is the deal, I am implementing a new navigation menu and footer to a site built with asp. Most of the pages have an include at the top of the page before the Doctype html tag. When I add my include file for my head tag (has my css links) and includes to add the new navigation/footer, the header and footer do not work in Internet Explorer. So essentially here is what a page will look like.
<!-- #include file='includes/pageincludes/namesearch_top.asp'-->
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<title>State Index Searching - Plat Index <%=txtTitle%></title>
<script LANGUAGE="JavaScript" SRC="/includes/cookie.js"></script>
<!-- #include file='myHeadContent.asp' -->
</head>
<body>
<!-- #include file='top_Nav.asp' -->
<!-- #include file='pageContent.asp' -->
<!-- #include file='footer.asp' -->
</body>
</html>
The namesearch_top.asp file has more includes that contain scripts to validate user login info, dates, etc. What could be the problem ?