Click to See Complete Forum and Search --> : Redirect Method


rathnadevil
September 7th, 2002, 05:07 AM
Hi,
I call redirect method from as ASP script to go to a local html page. The Error message I get is like "HTTP headers already posted" . I hear something about the 'buffering'. How to accomplish this task?

Thanks

Devil

Zvona
September 8th, 2002, 07:33 AM
Please post a part of code, if code below isn't working as you wanted :

<%
Response.Buffer = true
Response.Redirect("yourPage.asp")
%>

Note this forum is for Client-side Scripting while ASP is meant for Server-side Scripting.