Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
10.8k views
in CompleteFTP by
Hi !

I can't upload files using next code in on pc with Win 2000 Server, FrameWork 2 and site in ASP.Net



Public Function Subir_Archivo(ByRef pobjfulArchivo As FileUpload) As Boolean
'# INICIALIZAR VALORES
mstrMensaje = ""
mblnContinuar = True
' $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $

'# DATOS SERVIDOR AT&T
mstrUsuario = "morgoth"
mstrPassword = "HC7t%i6H"
mintPuerto = 21
mstrDireccionIP = "148.244.243.142"
''# DATOS SERVIDOR Mario
'mstrUsuario = "ANONYMOUS"
'mstrPassword = "ANONYMOUS@ANONYMOUS.COM"
'mintPuerto = 21
'mstrDireccionIP = "172.16.2.32"

'# VALIDAR QUE SE INDICO EL ALUMNO MATRICULA, EL NUMERO DE ACTIVIDAD Y LA RUTA DESTINO
If mstrAlumnoMatricula = "" Then
'# Mensaje de error
mstrMensaje = "NO INDICO LA MATRICULA DEL ALUMNO"
'# CAMBIAR BANDERA DE CONTROL
mblnContinuar = False
'Salir de la funcion
Exit Function
End If
If mstrActividadID = "" Then
'# Mensaje de error
mstrMensaje = "NO INDICO EL NUMERO DE LA ACTIVIDAD"
'# CAMBIAR BANDERA DE CONTROL
mblnContinuar = False
'Salir de la funcion
Exit Function
End If
If mstrRutaDestino = "" Then
'# Mensaje de error
mstrMensaje = "NO INDICO LA RUTA DESTINO"
'# CAMBIAR BANDERA DE CONTROL
mblnContinuar = False
'Salir de la funcion
Exit Function
End If

'# USANDO EL OBJETO FILE UPLOAD FILE VALIDAR EL ARCHIVO
With pobjfulArchivo
'# VALIDAR SI SE SELECCIONO UN ARCHIVO
If .HasFile Then
'* * * OBTENER INFORMACION DEL ARCHIVO ORIGEN * * *
'# EL TAMA

2 Answers

0 votes
by (51.6k points)
Did this error occur while you were making the initial connection or when you were trying to transfer data?

- Hans (EDT)
0 votes
by
The problem was when intentava to upload the file the server.

But the problem already fix it and it was that the server handles another direction since has two cards of network.


Thanks, now work very well.

Categories

...