
27/03/2003, 12:45
|
| | Fecha de Ingreso: marzo-2003
Mensajes: 90
Antigüedad: 22 años, 3 meses Puntos: 0 | |
Estoy segato, estaba puesto.
Pon este codigo y me dices si te rula :
strSQLAddCont = "SELECT * FROM GAMES_INFO"
Set MRCS = server.CreateObject("ADODB.recordset")
MRCS.open strSQLAddCont, MyConn, 2,3
MRCS.addnew
MRCS("ID_JUEGO") = txtGameID
MRCS("ID_SECCION") = txtSeccID
MRCS("CONTENIDO") = txtInfo
MRCS("SECC_JUEGO") = txtSeccName
MRCS("TITULO") = txtTitulo
MRCS.Update
MRCS.CLose |