
23/04/2003, 03:57
|
 | | | Fecha de Ingreso: enero-2002 Ubicación: Ontario,Toronto [Canada]
Mensajes: 2.017
Antigüedad: 23 años, 3 meses Puntos: 6 | |
hola
no es necesario que quites las lineas, son los que te van a mostrar el error
If Err <> 0 Then
Response.Write("An error occurred when saving the file on the server.")
end if
Total Bytes Written: <%=upl.TotalBytes%>
ponlas de esta forma
<%If Err <> 0 Then
Response.Write("An error occurred when saving the file on the server.")
end if %>
Total Bytes Written: <%=upl.TotalBytes%>
<%'Ponlo donde estaba
'resto de tu codigo %>
El fallo de spected end of statement se refiere a que tienes <% ... %> dentreo de otros <% ... %>
Prueba a ver si te funciona y me cuentas
saludos |