Hi,
I have an asp page that I would like to process some script then be redirected to another page. I'm using response.buffer = true to withhold the page during process then issue the redirect. I get this error:
Response object error 'ASP 0156 : 80004005'
Header Error
temp1.asp, line 10
The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
here's my code: the other scripting has been ommitted, but this simiplefied code doesn't work either. I'm using IIS5.0
<%@LANGUAGE = "VBScript"%>
<%Response.buffer=true%>
<html>
<body>
<%
Response.Flush
%>
<%
Response.Redirect"Home.asp"
%>
</body>
</html>
any ideas would be appreciated.
Steve
I have an asp page that I would like to process some script then be redirected to another page. I'm using response.buffer = true to withhold the page during process then issue the redirect. I get this error:
Response object error 'ASP 0156 : 80004005'
Header Error
temp1.asp, line 10
The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
here's my code: the other scripting has been ommitted, but this simiplefied code doesn't work either. I'm using IIS5.0
<%@LANGUAGE = "VBScript"%>
<%Response.buffer=true%>
<html>
<body>
<%
Response.Flush
%>
<%
Response.Redirect"Home.asp"
%>
</body>
</html>
any ideas would be appreciated.
Steve