Questo è l'errore che mi da:
Microsoft VBScript compilation error '800a03ea'

Syntax error

/admin/index.asp, line 9

If Lcase (Request.Form ("username")) = Lcase(username) and

Questo è la sintassi scritta:
<%

'USERNAME AMMINISTRATORE
username = "admin"
'PASSWORD AMMINISTRATORE
password = "admin"

If Lcase (Request.Form ("username")) = Lcase(username) and
Lcase(Request.Form("password")) = Lcase(password) then
session("amministratore") = true
Response.Redirect "Gestione_news.asp"
End If

%>
Qualcuno sa dirmi dov'è lo sbaglio?