salut,
j'arrive pas a me connecter a ma base de donnee mysql
j'ai crée uj schema intitulé "admission" et ma table "administrateur" voici mon code :
<%
DSN_BASE = "DRIVER={MySQL 5.0.27-community-nt via TCP/IP};" & "SERVER=sql server;" & "PORT=3306;" & "DATABASE=admission;" & "USER=root;" & "PASSWORD=root;"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open DSN_BASE
log=Request.form("login")
pass=Request.form("password")
Set Rs = Server.CreateObject("ADODB.Recordset")
SQL="SELECT password FROM administrateur where login='" & login & "'"
RS.open SQL,Conn,adLockPessimistic
set autRes=Conn.Execute[SQL]
if autRES.EOF=false then
if autRES("password") = password then
Response.Redirect("menu.asp")
else
Response.Redirect("erreur.html")
end if
Conn.Close
set Conn = nothing
%>
voici le message d'erreur qui s'affiche
Erreur de compilation Microsoft VBScripterror '800a0401'
Fin d'instruction attendue
/iisHelp/common/500-100.asp, line 11
Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP Dim strMethod, lngPos, datNow, strQueryString, strURL
--------------------------------------------------------------------------^
Erreur de compilation Microsoft VBScripterror '800a0401'
Fin d'instruction attendue
/myweb/verification.asp, line 17
set autRes=Conn.Execute[SQL]
j'ai beau essayer ca marche pas 
merci de m'aider
-----------------------^