Código:
y me marca este error:<%
'definimos la variable de conexion
Dim Conexion,Tabla
Set Conexion = Server.CreateObject("ADODB.Connection")
Set Tabla = Server.CreateObject("ADODB.Recordset")
'conectamos a la base de datos mediante OLE ODBC dando el Driver
Conexion.Open "Driver={Microsoft Access Driver (*.mdb)}; " & "Dbq=" & Server.MapPath("base.mdb")
Tabla.Open "cat_proyecto",Conexion
Tabla.AddNew (linea 11)
Tabla("ubi_admin") = Request("ubi_admin")
Tabla("ubi_geo") = Request("ubi_geo")
Tabla.Update
'fin del Script
%>
Technical Information (for support personnel)
- Error Type:
ADODB.Recordset (0x800A0CB3)
Current Recordset does not support updating. This may be a limitation of the provider, or of the selected locktype.
/it/p1_pro.asp, line 11

