One of our sites is built with frames. The problem seems to be that if the appliance does not find any information in the <body> </body> area then essentially that page is blank. Then the next frames page it finds it records it as a duplicate. These pages are correctly coded for our site. There is no need for any <noframes> information as our corporate standard browser is IE 5.5.
What can we do to get these url's in the database? the reason is that I need to attach best bets to them. Without turning off duplicates.
Here is the code from two of the pages..
first page:
<html>
<head>
<title>IT</title>
</head>
<frameset rows="68,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="../../site_architecture/top_services.html" name="top" scrolling="NO" noresize >
<frameset rows="*" cols="190,*" framespacing="0" frameborder="NO" border="0">
<frame src="../../site_architecture/left_services_telecom.html" name="left" noresize>
<frame src="../../site_architecture/main_services_telecom.html" name="main">
</frameset>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>
Second page:
<html>
<head>
<title>human resources</title>
</head>
<frameset rows="68,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="../../human_resources/top.html" name="top" scrolling="NO" noresize >
<frameset rows="*" cols="190,*" framespacing="0" frameborder="NO" border="0">
<frame src="../../human_resources/left.html" name="left" noresize>
<frame src="../../human_resources/main.html" name="main">
</frameset>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>
What can we do to get these url's in the database? the reason is that I need to attach best bets to them. Without turning off duplicates.
Here is the code from two of the pages..
first page:
<html>
<head>
<title>IT</title>
</head>
<frameset rows="68,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="../../site_architecture/top_services.html" name="top" scrolling="NO" noresize >
<frameset rows="*" cols="190,*" framespacing="0" frameborder="NO" border="0">
<frame src="../../site_architecture/left_services_telecom.html" name="left" noresize>
<frame src="../../site_architecture/main_services_telecom.html" name="main">
</frameset>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>
Second page:
<html>
<head>
<title>human resources</title>
</head>
<frameset rows="68,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="../../human_resources/top.html" name="top" scrolling="NO" noresize >
<frameset rows="*" cols="190,*" framespacing="0" frameborder="NO" border="0">
<frame src="../../human_resources/left.html" name="left" noresize>
<frame src="../../human_resources/main.html" name="main">
</frameset>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>