Afstemning ??
Kan nogen hjælpe mig ??Her skulle afstemning tælle + 1
Den komme med følgende fejl:
ADODB.Recordset error \'800a0cb3\'
The operation requested by the application is not supported by the provider.
stem1.asp, line 16
Og stem1.asp :
<%Response.Buffer = True %>
<%
Set Conn = Server.CreateObject(\"ADODB.connection\")
Conn.open \"DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=\" & Server.Mappath(\"\\log\\poll.mdb\")
Set rs = Server.CreateObject(\"ADODB.RecordSet\")
strSQL = \"SELECT * FROM result\"
rs.open strSQL,conn
if request.form(\"alt1\") = 1 then
rs(\"alt1\") = rs(\"alt1\") + 1
End If
rs.Update <------Linie 16-----------
rs.Close
conn.close
Set rs = Nothing
Conn = Nothing
Response.Clear
Response.write \"ok\"
%>