Hello I have 2 folders A & B. Method A is found in Folder A and method B is in Folder B. Folder A |_ method A Folder B |_ method B What is the construct for <dtml-call "RESPONSE.redirect( 'Folder A/method A' )">. Appreciate youir help.
I have 2 folders A & B. Method A is found in Folder A and method B is in Folder B.
Folder A |_ method A
Folder B |_ method B
What is the construct for <dtml-call "RESPONSE.redirect( 'Folder A/method A' )">.
Assuming you call it from FolderB/MethodB: <dtml-call "RESPONSE.redirect( '../FolderA/methodA' )">
Sergey Volobuev wrote at 2003-7-22 16:27 +1100:
I have 2 folders A & B. Method A is found in Folder A and method B is in Folder B.
Folder A |_ method A
Folder B |_ method B
What is the construct for <dtml-call "RESPONSE.redirect( 'Folder A/method A' )">.
Assuming you call it from FolderB/MethodB:
<dtml-call "RESPONSE.redirect( '../FolderA/methodA' )">
Note that the HTTP specification requires an absolute URL although most browsers are not picky about this. Dieter
participants (3)
-
Chan YH -
Dieter Maurer -
Sergey Volobuev