
Response Redirect doesn't Work - No me funciona Response Redirect
Unless it's just a typo in the post, you're missing the closing %> in the line preceding the error.
You also need to add Response.Buffer = True at the top or move the opening <HTML> tag below the
redirect...
--
Michael Harris
MVP Scripting
English
Response.Redirect is not responding, what is wrong in the script please? The
browser shows a "Expected statement" error
Spanish
El Mtodo Response.Redirect no funciona, muestra un mensaje de error en la
lnea correspondiente diciendo que se esperaba una declaracin.
<HTML>
<% Mensaje = Request.ServerVariables("QUERY_STRING")%>
<%If Mensaje = "" Then %>
<% nuevaDir = "http://www.domain.com/members.htm"
<%Response.Redirect nuevaDir %> <---- this is the error line / esta es
la lnea
<%Else %>
<% Response.Write ("You are In") %>
<%End if %>
</HTML>
thank you
gracias