Por favor pueden ayudarme a resolver esto me despliega
este error el browser intento conectarme por OLEDB a una
base de datos access pero no funciona y despliega este
error:
NO ERROR INFORMATION AVAILABLE REGDB_E_CLASSNOTREG
(0X80040154)
MI CODIGO ES EL SIGUENTE
<%@ Page Language="VB" Debug="true" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script runat="server">
Sub Page_Load(obj As object, e As eventargs)
if ispostback() then
Dim objConn as new OleDbConnection
("Provider=Microft.Jet.OLEDB.4.0;Data Source=" &
server.mappath("../db/facil.mdb"))
Dim sSQL, Resul as string
sSQL = "INSERT INTO Contactos
(Nombre,Puesto,Empresa,Giro,Telefono,Fax,Email,Dir eccion,C
olonia,Ciudad,Estado,CodigoPostal,NoFlotilla,Comen tario)
VALUES ('" & Nombre.text & "','" & puesto.text & "','" &
Empresa.text & "', '" & giro.text & "', '" &
telefono.text & "', '" & fax.text & "','" & email.text
& "','" & direccion.text & "', '" & colonia.text & "','"
& ciudad.text & "','" & estado.text & "','" & CP.text
& "',"' & NoFlotilla & "',"' & comentario &"')"
Dim objCmd As New OleDbCommand
(sSQL,objConn)
objConn.open
resul = objCmd.ExecuteNonQuery
if resul then
response.write("Se ha agregado
correctamente el registro")
end if
end if
end Sub
</script>
EN ESPERA DE SU RESPUESTA PRONTA

MIL GRACIAS
SALUDOS !!!
.