Me sale el siguiente error, que por cierto bien raro.... y no doy alguien sabra que es:
Response object error 'ASP 0156 : 80004005' Header Error /prueba/app/login.asp, line 11 The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
Y este es el codigo.......
<!--#include file="conn.asp"-->
<html>
<head><title>Proceso de Login...</title></head>
<body>
asasas
<%
set rs=conexion.execute("select username from usuario where username='"&request.Form("user")&"' and password='"&request.Form("pw")&"'")
if not rs.eof then
session("UserIn")=cstr(rs.fields("username"))
response.Redirect("resgUser.asp")
else%>
<% session.Abandon()
response.Redirect("rigth.asp?err=1")
end if
%>
</body>
</html>