... me da este error??
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][Controlador ODBC Microsoft Access] No coinciden los tipos de datos en la expresión de criterios.
/_index/inc_secc_games.asp, line 17
La sentencias qeu van anteriores al error son:
Código:
<% txtGame = Request.QueryString("game")%>
<%= txtGame %>
<%
strSQLCogerIDGame = "SELECT ID_JUEGO FROM GAMES_GAMES WHERE LINK ='" & txtGame & "'"
response.write (strSQLCogerIDGame)
Set MyRecordset = MyConn.execute(strSQLCogerIDGame)
txtIDGame = MyRecordset("ID_JUEGO")
txtIDGame = CInt(txtIDGame)
MyRecordset.close
strSQLCogerGame = "SELECT SECCION, LINK_SECC FROM GAMES_SECC WHERE ID_JUEGO ='" & txtIDGame & "'"
response.write (strSQLCogerGame)
Set MyRecordset = MyConn.execute(strSQLCogerGame)
%>
¿¿Que es lo que no coincide??