è da pochissimo che tento di capire asp. Ho iniziato ad osservarlo ieri
sto provando INCLUDE:
Ho costruito una pagina .asp ( semplicissima, una testata con colonna a sx a dx e centrale x il testo)e nello spazio a dx vorrei inserire un login con include (almeno provarci).
Quindi a sx inserisco una cella e dentro la cella
Faccio partire la pagina in locale e non funziona niente. A parte che quando inserisco già la pagina mi sballa tutta ( nel senso ke gli oggetti ke compongono la pagina cambiano di posizione).
Grazie
Scusate
ps questa è la pagina login:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
MM_valUsername=CStr(Request.Form("username"))
If MM_valUsername <> "" Then
MM_fldUserAuthorization=""
MM_redirectLoginSuccess="entrato.asp"
MM_redirectLoginFailed="sbaglio.asp"
MM_flag="ADODB.Recordset"
set MM_rsUser = Server.CreateObject(MM_flag)
MM_rsUser.ActiveConnection = MM_conn_database_STRING
MM_rsUser.Source = "SELECT username, password"
If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization
MM_rsUser.Source = MM_rsUser.Source & " FROM login WHERE username='" & Replace(MM_valUsername,"'","''") &"' AND password='" & Replace(Request.Form("password"),"'","''") & "'"
MM_rsUser.CursorType = 0
MM_rsUser.CursorLocation = 2
MM_rsUser.LockType = 3
MM_rsUser.Open
If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
' username and password match - this is a valid user
Session("MM_Username") = MM_valUsername
If (MM_fldUserAuthorization <> "") Then
Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization ).Value)
Else
Session("MM_UserAuthorization") = ""
End If
if CStr(Request.QueryString("accessdenied")) <> "" And false Then
MM_redirectLoginSuccess = Request.QueryString("accessdenied")
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginSuccess)
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginFailed)
End If
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>spazio soci</title>
<link href="stilelogin.css" rel="stylesheet" type="text/css">
</head>
<body>
<form action="<%=MM_LoginAction%>" method="POST" name="login" id="login">
<table width="195" border="0">
<tr>
<td width="189"><div align="center">Inserisci i tuoi Dati </div></td>
</tr>
<tr>
<td><div align="center">
<input name="username" type="text" id="username" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">
<input name="password" type="password" id="password" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">
<input type="submit" name="Submit" value="Entra">
</div></td>
</tr>
<tr>
<td></td>
</tr>
</table>
</form>
</body>
</html>


Rispondi quotando

