<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>PROCESAR </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<%
Dim Conn,strSQL ,cnn
Cnn.open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\Mis documentos\Seleccion_de_personal\Prueba_bd\selecci on_prueba.mdb"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open strconn
strSQL = "insert into seleccion_personal (Nombre, Apellidos) values ('" & Request.Form("Nombre") & "', '"& Request.Form("Apellidos") & "')"
Conn.Execute(strSQL)
Conn.Close
set Conn = nothing
%>
</body>
</html>
Pero,, no hace nada,,, absolutamente nada,, ni un error me manda,, lo intente tambien por DNS pero nada,, necesito ayuda Porfavor..

