hola tamm(

)
es una simple consulta para ire adaptando a estes tipo de errores con MSDE 2000
codigo:
Código PHP:
<%
criterio=request.Form("id5")
if isnumeric(criterio) then
criterio=right("00000"&Cstr(criterio),5)
tabla=left(request.Form("armaii"),2)
set oCxn=server.CreateObject("ADODB.Connection")
oCxn.open session("StrCxn")
set RS=server.CreateObject("ADODB.Recordset")
sSQL="select id_recibo,index from tabla"&tabla&" where id_recibo= '"&criterio&"';"
RS.open sSQL, oCxn, 3, 3
if Err=0 then
if RS.EOF=false then
response.Write "Recibo: "&RS("id_recibo").value
response.Write " Index: "&RS("index").value&"<br/>"
else
response.Write "ok..."
end if
else
response.Write "Error en la grabacion. llame el Administrador"
end if
rs.close
ocxn.close
set oCxn=nothing
set RS=nothing
end if
es extraño el error, pero bueno, hay que comenzar por algun lado