
20/01/2003, 14:20
|
| | Fecha de Ingreso: mayo-2001 Ubicación: La Plata, Argentina
Mensajes: 14
Antigüedad: 24 años Puntos: 0 | |
Ayuda con este error. Al hacer Upload Al querer subir un archivo al servidor me aparece el siguiente error: Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Append'
/subir1.asp, line 220
En el codigo tengo... Set RST = CreateObject("ADODB.Recordset")
LenBinary = LenB(binData)
if LenBinary > 0 then
RST.Fields.Append "myBinary", adLongVarChar, LenBinary
RST.Open
RST.AddNew
RST("myBinary").AppendChunk BinData
RST.Update
strDataWhole = RST("myBinary")
End If
Puede ser que sea la version de ASP ? Como la actualizo ? Puedo hacerla funcionar con Win NT Server ?
Gracias. |