Peter
|
| Posted: 04/03/2002, 10:29 AM |
|
This is what I get when I logout
======================================
Object Moved
This object may be found here.
======================================
whre here is a link to the correct page.
This does NOT happen on the development machine (Win98/PWS). It only shows
on the published site (Win2000/IIS5).
Any ideas?
|
|
|
 |
Alex Alexapolsky
|
| Posted: 04/03/2002, 11:21 AM |
|
Do you use IE or NN to browse that page ?
|
|
|
 |
Peter
|
| Posted: 04/03/2002, 12:00 PM |
|
Netscape. -- It works in IE -- How can I correct it?
|
|
|
 |
Nicole
|
| Posted: 04/04/2002, 1:38 AM |
|
Peter,
This is probably caused by the fact that Login page contains a redirect to itself, that is interpreted by Netscape as a possible infinite loop, that is untrue in this case. To circumvent this , add the following code into
Login /Form Properties/Events/OnLogin and onLogout :
ASP
sFileName = sFileName & "?quirk=" & now()
This will make Netscape think that this is a "different" Login page as
it has a parameter containing a different value each time.
|
|
|
 |
Nicole
|
| Posted: 04/04/2002, 1:38 AM |
|
Peter,
This is probably caused by the fact that Login page contains a redirect to itself, that is interpreted by Netscape as a possible infinite loop, that is untrue in this case. To circumvent this , add the following code into
Login /Form Properties/Events/OnLogin and onLogout :
ASP
sFileName = sFileName & "?quirk=" & now()
This will make Netscape think that this is a "different" Login page as
it has a parameter containing a different value each time.
|
|
|
 |
|