Dark Dragon
08-24-2003, 12:31 PM
I have a drop down menu on my page and the links work okay but the problem lies in when I am on one of the pages the link takes me to and I click on the link that takes me to the same page I am already on..it should just refresh but instead it says "Page Cannot Be Displayed" what should be done? Here is the code below.
<head>
<style>
body{font-family:arial;}
table{font-size:80%;background:black}
a{color:white;text-decoration:none;font:bold}
a:hover{color:#FF0066}
td.menu{background:teal}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}
</script></head>
<h3><img src="pics/wlcome.gif" width="359" height="31"></h3>
<table width="100%" align="center">
<tr bgcolor="#FF8080">
<td onmouseover="showmenu('Game Tips')" onmouseout="hidemenu('Game Tips')" bgcolor="#000033" width="33%">
<a href="/default.asp"><font face="Comic Sans MS">Game and Computer Tips</font></a><br />
<table class="menu" id="Game Tips" width="100%">
<tr>
<td class="menu"><a href="/spyro2.htm" target="_self">Spyro the Dragon:
Ripto's Rage</a></td>
</tr>
<tr><td class="menu"><a href="/xhtml/default.asp">Spyro the Dragon: Year of the Dragon</a></td></tr>
<tr><td class="menu"><a href="/css/default.asp">Spyro the Dragon: Enter the Dragonfly</a></td></tr>
<tr><td class="menu"><a href="/xml/default.asp">Jak and Daxter</a></td></tr>
<tr><td class="menu"><a href="/xsl/default.asp">Various Other Tips</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Artwork')" onmouseout="hidemenu('Artwork')" bgcolor="#000033" width="35%">
<a href="/default.asp"><font face="Comic Sans MS">My Artwork</font></a><br />
<table class="menu" id="Artwork" width="100%">
<tr><td class="menu"><a href="/js/default.asp">Pencil Drawings</a></td></tr>
<tr><td class="menu"><a href="/vbscript/default.asp">VPhotoshop Creations</a></td></tr>
<tr><td class="menu"><a href="default.asp">Digital Tablet Images</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Stuff')" onmouseout="hidemenu('Stuff')" bgcolor="#000033" width="32%">
<a href="/site/site_validate.asp"><font face="Comic Sans MS">"Stuff"</font></a><br />
<table class="menu" id="Stuff" width="100%">
<tr><td class="menu"><a href="/site/site_validate.asp">About This Site</a></td></tr>
<tr><td class="menu"><a href="/site/site_validate.asp">Brief Tutorials</a></td></tr>
<tr>
<td class="menu"><a href="/site/site_validate.asp">Tips and Whatever</a></td>
</tr>
</table>
</td>
</tr>
</table>
<head>
<style>
body{font-family:arial;}
table{font-size:80%;background:black}
a{color:white;text-decoration:none;font:bold}
a:hover{color:#FF0066}
td.menu{background:teal}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}
</script></head>
<h3><img src="pics/wlcome.gif" width="359" height="31"></h3>
<table width="100%" align="center">
<tr bgcolor="#FF8080">
<td onmouseover="showmenu('Game Tips')" onmouseout="hidemenu('Game Tips')" bgcolor="#000033" width="33%">
<a href="/default.asp"><font face="Comic Sans MS">Game and Computer Tips</font></a><br />
<table class="menu" id="Game Tips" width="100%">
<tr>
<td class="menu"><a href="/spyro2.htm" target="_self">Spyro the Dragon:
Ripto's Rage</a></td>
</tr>
<tr><td class="menu"><a href="/xhtml/default.asp">Spyro the Dragon: Year of the Dragon</a></td></tr>
<tr><td class="menu"><a href="/css/default.asp">Spyro the Dragon: Enter the Dragonfly</a></td></tr>
<tr><td class="menu"><a href="/xml/default.asp">Jak and Daxter</a></td></tr>
<tr><td class="menu"><a href="/xsl/default.asp">Various Other Tips</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Artwork')" onmouseout="hidemenu('Artwork')" bgcolor="#000033" width="35%">
<a href="/default.asp"><font face="Comic Sans MS">My Artwork</font></a><br />
<table class="menu" id="Artwork" width="100%">
<tr><td class="menu"><a href="/js/default.asp">Pencil Drawings</a></td></tr>
<tr><td class="menu"><a href="/vbscript/default.asp">VPhotoshop Creations</a></td></tr>
<tr><td class="menu"><a href="default.asp">Digital Tablet Images</a></td></tr>
</table>
</td>
<td onmouseover="showmenu('Stuff')" onmouseout="hidemenu('Stuff')" bgcolor="#000033" width="32%">
<a href="/site/site_validate.asp"><font face="Comic Sans MS">"Stuff"</font></a><br />
<table class="menu" id="Stuff" width="100%">
<tr><td class="menu"><a href="/site/site_validate.asp">About This Site</a></td></tr>
<tr><td class="menu"><a href="/site/site_validate.asp">Brief Tutorials</a></td></tr>
<tr>
<td class="menu"><a href="/site/site_validate.asp">Tips and Whatever</a></td>
</tr>
</table>
</td>
</tr>
</table>