Posted by John on 08/08/06 18:55
All,
Thanks for the help!
After printing out the source code for a good page and the code for a page
that wasn't working and going over it line by line, there was only one
difference: the name of the file.
I made up some rough test code below and recreated the error.
1) Open up Notepad.
2) Copy and paste from <! Cut and paste> to <! Cut and paste>.
3) Name this file "test.html". (html file extension)
4) Open the file in IE. Go crazy clicking back and forth.
5) Go back to Notepad, use the same code, but name it "test.asp". (asp file
extension)
6) Open the file in IE. Error time.
Why do hyperlinks and bookmarks not work the same for .asp files than for .
html?? Baffled about this.
VR/
John
<! cut and paste start>
<html>
<head>
</head>
<body>
<a name="up">Up</a>
<p> </p>
<a href="#down">Down</a>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<a name="down">Down</a>
<p> </p>
<a href="#up">Up</a>
</body>
</html>
<! cut and paste end>
[Back to original message]
|