If Request.QueryString("profil") = "uppdatera" Then
Mail = Request.Form("Mail")
Icq = Request.Form("Icq")
Url = Request.Form("Url")
Sign = Request.Form("Sign")
Url2 = Left(Url,7)
If Url2 = "http://" Then
strUrl = Url
Else
strUrl = "http://" & Url
End If
strSQL = "UPDATE t_Members SET " _
& "( f_Mail = '"& Mail &"', f_Icq = "& Icq &", f_Url = '"& strUrl &"', f_Sign = '"& Sign &"' Where f_ID=" & Session("UserID") & ") "
[b]Connect.Execute( strSQL )[/b]
Response.Redirect "admin.asp?profil=uppdaterad"
End If
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.
/forum/admin.asp, line 133