currently I have an asp script that has the snippet of code:<br><br>-----------------------------------<br>strAlt = Request.Form("Customers"<br><br>Select Case strAlt<br><br> Case "List Customers"<br> Response.redirect "dpcustomer.asp"<br> End select<br>------------------------------------<br><br>when I run the script I get the error message:<br><br>----------------------------------<br><br>Response object error 'ASP 0156 : 80004005' <br><br>Header Error <br><br>/webdb.asp, line 51 <br><br>The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content. <br><br>--------------------------------------------<br><br>this is the error message concerned with the code shown.<br>Is there any way I can go to another page in an asp script?<br>I think response redirect only works when placed before and <html> and <body> tags.<br><br><br>