ASP Forum
Microsoft JET Database Engine error '80040e14'
milchagros | Posted 8:08am 12. January 2010 Server Time |

My code is:

<%
if not rs.eof then
  bg =  "#EBF5FC"
  while not rs.Eof

  

  if bg = "#ffffff" then bg= "#F1F1F1" else bg = "#ffffff"
  
  cmd3 = "SELECT * FROM peliculas WHERE id =  " & rs("pelicula")
set rs3 = CreateObject("ADODB.Recordset")
rs3.open cmd3, conn

cmd5 = "SELECT * FROM tipo where id =  " & rs("tipo")
set rs5 = CreateObject("ADODB.Recordset")
rs5.open cmd5, conn


%>



It was functioning till one day... it stopped! and now i don't know ehat's happening... :(


Reply to Post Microsoft JET Database Engine error '80040e14'



Back to Forum Page