
21/02/2003, 22:54
|
 | | | Fecha de Ingreso: diciembre-2001
Mensajes: 5.286
Antigüedad: 23 años, 3 meses Puntos: 1 | |
Creo que debes usar algo asi
-
-
-
Set MyRecordset=Server.CreateObject("ADODB.Recordset")
strSQLAdd = "SELECT ID_JUEGO, ID_SECCION, SECCION, LINK_SECCION, INFO, AUTOR_ID FROM GAMES_SECC"
MyRecordset.open strSQLAdd, MyConn, 2,3
MyRecordset.addnew
MyRecordset("ID_JUEGO") = txtGameID
MyRecordset("ID_SECCION") = txtSeccNewID
MyRecordset("SECCION") = txtSecc
MyRecordset("LINK_SECCION") = left(3, txtSecc)
MyRecordset("INFO") = txtHover
MyRecordset("AUTOR_ID") = session("usrID")
MyRecordset.Update
-
-
- |