El problema es cuando quiero loguearme, no lee bien los datos... acá esta subido..
http://reitmann.argos.com.ar/txt_registro/
Este es el archivo form2.asp el login.
Código:
Espero su ayuda...Gracias <%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.OpenTextFile(Server.MapPath("contador.txt"), 1)
do while f.AtEndOfStream = false
user=(f.ReadLine)
pass=(f.ReadLine)
if request.form("user") = user then
if request.form("contrasena") = pass then
Response.Write "Bienvenido usuario"
else
Response.Write "Esta mal su contraseña"
end if
else
Response.Write "Esta mal su usuario y contraseña"
end if
loop
f.Close
Set f=Nothing
Set fs=Nothing
%>

