Posted by Brian Cryer on 09/21/06 15:02
"Dave" <david.mh.tong@gmail.com> wrote in message
news:1158847097.138424.192140@m73g2000cwd.googlegroups.com...
> Hi,
>
> Can anyone tell me the difference between the following where
> "Test.asp" is found in the same folder as the target page calling the
> hyperlink "Last Image"?
>
> 1. <a href="./Test.csp">Last Image</a>
> 2. <a href="Test.asp">Last Image</a>
>
> Thanks in advance,
> Dave
One is two characters longer than the other.
Seriously, I think that is the only difference. A single dot "." is a
reference to the current directory (similar to ".." referring to the
parent), so "./Test.csp" is the same as "Test.csp".
--
Brian Cryer
www.cryer.co.uk/brian
[Back to original message]
|