codice:
<%
Set ut = Server.CreateObject("ADODB.Recordset") 
ut.ActiveConnection = conn_STRING
ut.Source = "SELECT * FROM Admin WHERE LOGIN='" & Request.Form("login") & "' AND PWD='" & Request.Form("password") & "'"
ut.CursorType = 1 
ut.LockType = 2 
ut.Open()
If NOT ut.EOF Then
	Session("admin")= True
	response.redirect("home.asp")
else
	response.redirect("index.asp")
end if
%>
Come è possibile che vada in timeout?
Il locale funziona benissimo, veloce. In remoto su 2003 fa così, ma non solo questa pagina, anche le altre.
Può dipendere dall'hosting? :master: