I have a webserver that requires the user to be logged in to see/do anything. The default page is set to index.html and the login page is set to login.html. If the user enters a wrong password they should get an error message and then the login page should be presented again. This worked fine in NT4. However, in NT5, sometimes the error message is displayed and most of the time a "The page cannot be found" page is displayed. If I hit refresh, then the login page is displayed again correctly. The login validation for bad password is:
loc:invalid = 'tmp:UserName'
p_web.SetValue('retry','login.html')
loc:Alert = 'Login Failed. Try Again.'
loc:invalid is set to tmp:UserName for wrong user names or passwords so as not to give away which was wrong. Am I missing another settingor step?