Navigation Issue
Hi All -
I have a directory structure as follows:
folder1
- Includes
- index.cfm
folder2
- index2.cfm
I have some links on index.cfm which on clicking goes to index2.cfm in folder2. I am using javascript, and the action attribute is:
document.forms[0].action = "../folder2/index2.cfm".
The index2.cfm has a button which on clicking goes back to index.cfm. The javascript action is:
document.forms[0].action = "../folder1/includes/index.cfm".
Until this it is working fine.
Once the user is back on index.cfm and clicks the link to go again to index2.cfm, i get the error that folder1/folder2/index2.cfm does not exist. What could be the cause of this?
