N Brooks
|
| Posted: 08/06/2002, 4:50 PM |
|
HELP!
I am creating a script that will work just perfect on my Windows XP Server, however, when I upload it to my live server I get this error when loggin in:
Response object error 'ASP 0156 : 80004005'
Header Error
/cookbookasp/header.asp, line 2
The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
- OR -
Response object error 'ASP 0156 : 80004005'
Header Error
/cookbookasp/userlogin.asp, line 69
The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
on a different page.
Please help as this is very frustrating.
Thanks.
|
|
|
 |
CodeCharge Support
|
| Posted: 08/07/2002, 6:52 AM |
|
then there's superfluous code for parsing login form:
Parse "Formlogin", False
It is using once in the form Show sub, and it is unnecessary in the loginAction sub, that is causing the error.
Remove it from here:
sloginErr = "Login or Password is incorrect."
(line 69) end if
Parse "Formlogin", False
and here:
Session("UserRights") = Empty
Parse "Formlogin", False
|
|
|
 |
|