Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/06/2010, 12:49
Avatar de freesoftwarrior
freesoftwarrior
 
Fecha de Ingreso: marzo-2006
Mensajes: 362
Antigüedad: 18 años, 8 meses
Puntos: 10
Problemas con xelupload y Windows Vista

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