Thx for your help Ron! We're not alowed to run asp pages on our new server,
only aspx, that's why I have to get it working in aspx.
Yes the include is a complete htm, well here is the first few lines (the
rest of the code is just more menu items):
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Quick Menu for 'Tools' Pages/Frames</title>
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="stylesheet" type="text/css" href="CascadeMenuAll.css">
<script language="javascript" src="CascadeMenuAll.js"></script>
</head>
<body>
<table width="135" background="../images/Nedbank_Images/barFiller.jpg">
<tr>
<td class="menuBlur" onmouseover="openlist(this);"
onmouseout="closelist(this);" style="border-color:#FFFFFF; padding-left: 4px;
padding-right: 4px; padding-top: 1px; padding-bottom: 1px">
<p align="left"><font style="font-size: 11pt; ">QuickTools</font><font
face="Arial">â–¼</font></p>
<div class="menuBlur" width="100%" style="float: center">
<table class="itemtable" width="100%" style="border-collapse: collapse;
border: 1px solid #29634B; padding-left: 4px; padding-right: 4px;
padding-top: 1px; padding-bottom: 1px" border="0" bordercolor="#000000"
cellspacing="3">
<tr>
<td class="menuBlur" align="center">
<a class="item" target="_top"
href="../CardBizZone/CardOps/COE/SystAccess_IndexFrames.htm">Systems
Access</a>
</td>
</tr> etc.........
I've copied the tags to the links (stylesheets + cascade) and Script (for
cascade) in <head> into all the pages that are displaying the include because
the menu with the include forms part of a bigger frames-based page. Still not
working.
Here is the code for the aspx file calling the include:
<%@ Page Language="vb" AutoEventWireup="true" Codebehind="Main_Menu.aspx.vb"
Inherits="Application_Prepping.Main_Menu"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Main_Menu</title>
<meta content="Microsoft FrontPage 6.0" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="
http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
<link rel="stylesheet" type="text/css" href="../Inserts/style.css">
<link rel="stylesheet" type="text/css" href="../Inserts/style2.css">
<link rel="stylesheet" type="text/css"
href="../Inserts/CascadeMenuAll.css">
<script language="javascript" src="../Inserts/CascadeMenuAll.js"></script>
<style>
A:link, A:visited {color: #000000; text-decoration: none; font-size: 8pt;}
A:hover {color: #1b4132; font-weight:bold; font-size: 8pt;}
</style>
<script language="JavaScript"><!--
function openFunction(sURL)
{
parent.AppTrackMain.location.href = sURL;
return false;
}
//--></script>
</head>
<body>
<form id="Form1" method="post" runat="server">
<div style="Z-INDEX: 101; LEFT: 3px; WIDTH: 136px; POSITION: absolute; TOP:
0px; HEIGHT: 80px">
<!--webbot bot="Include" U-Include="../Inserts/QuickMenuToolPages.htm"
TAG="BODY" --><p> </p>
<fieldset style="WIDTH: 136px; HEIGHT: 52px">
<legend>Menu</legend>
<div style="BORDER-RIGHT: medium none; PADDING-RIGHT: 3px; BORDER-TOP:
medium none; PADDING-LEFT: 3px; PADDING-BOTTOM: 1px; BORDER-LEFT: medium
none; PADDING-TOP: 1px; BORDER-BOTTOM: medium none">
<asp:table id="Table1" runat="server" Width="120px"></asp:table>
</div>
</fieldset> </div>
</form>
</body>
</html>