Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a Relative Path Name
What Is a Relative Path Name? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs
✍: FYIcenter.com
A relative path name is a path name that starts without the leading slash "/". If a relative path name is used in a URL, the relative path name will be replaced with the current document path name appended with the specified relative path name.
If "." or ".." is used in path names, it will be interpreted as "current directory" or "parent directory" respectively. For example, if the following URLs are used in this document you are viewing right now:
./index.html ../index.html ../../index.html ../../faq/css/index.html image/fyi.jpg
your browser will borrow the protocol name, the host name, the port number, and the path name from the URL of this document, and produce the following URLs:
http://dev.fyicenter.com:80/faq/xhtml/index.html http://dev.fyicenter.com:80/faq/index.html http://dev.fyicenter.com:80/index.html http://dev.fyicenter.com:80/faq/css/index.html http://dev.fyicenter.com:80/faq/xhtml/image/fyi.jpg
2007-05-12, 4787👍, 0💬
Popular Posts:
How To Retrieve the Count of Updated Rows? - Oracle DBA FAQ - Working with Database Objects in PL/SQ...
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...
How To Set Up Breakpoints in Debug Mode? - Oracle DBA FAQ - Introduction to Oracle SQL Developer To ...
What Is a LABEL Tag/Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "label" ...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...