Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Redirect

Status
Not open for further replies.

FranckM

Programmer
Joined
May 8, 2002
Messages
76
Location
CA
I have a simple problem, oddly enough I can't find the nswer in some of my books. I'm trying to link one page from one folder to an other. How do I do this?

main |--> default.asp
usermnmt |--> viewuser.asp

What i'm trying to do is to link viewuser to default.asp but viewuser is in a directory that is located in the same directory as dafault.asp, I know there's a way to link the file.

Thanks for the help.
 
Try this........

<a href=&quot;otherFolderName/viewuser.asp&quot;>View User</a>
 
Man I should of known this one eheh. To go up one directory you have to use ../mainmenu.asp

Thanks for the help.
 
Is this what you are after???

This is put in 'viewuser.asp'

Code:
<A HREF=&quot;../default.asp&quot;>Link Text</A>


This is put in 'default.asp'

Code:
<A HREF=&quot;usermnmt/viewuser.asp&quot;>Link Text</A>

Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top