Buenas tardes:
Nunca lo he usado bajo Vista, siempre bajo Xp y ahora probé una simple rutina para subir un archivo y me da este error
Error de Microsoft VBScript en tiempo de ejecución error '800a01a8'
Se requiere un objeto: '[undefined]'
/invergas/monitor/procesos.asp, línea 19
y el código es simple:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!-- #include file="header.asp" -->
<!--#include file="xelupload.asp"-->
<html>
<head>
<title>Untitled</title>
</head>
<body>
<%
Set Subir = New xelUpload
Subir.Upload()
varTexto=Subir.Form("texto")
varPosicion=Subir.Form("posicion")
Set objFich = Subir.Ficheros("imagen")
varImagen=Subir.form("imagen")
objFich.Guardar varImagen, (Server.MapPath("../imagenes/posts"))
Set Subir = Nothing
%>
</body>
</html>
La línea 19 a la que hace referencia es la que esta en negrita y rojo.
¿Alguien podría darme una ayuda por favor? y si no funciona xelupload bajo Vista, ¿conocen alguna otra alternativa?
Mil gracias