30 messaggi dal 27 settembre 2007
Ciao
Ho creato una pagina ASP che tramite il comando CopyFile mi copia un file molto pesante da una cartella ad un'altra.
All'interno ho messo un'immagine JPG che si dovrebbe vedere mentre il CopyFile lavora, ma invece la vedo solo alla fine della copia.
Come posso fare a vederla durante??

Allego il cosice:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<%
SOGGETTO = trim(request.QueryString("SOGGETTO"))
FILE_VIDEO= trim(request.QueryString("FILE_VIDEO"))
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0">
<tr>
<td> </td>
<td><div align="center"><img src="Images/incostruzionebd5.png" width="300" height="407" /></div></td>
<td> </td>
</tr>
</table>
</body>
</html>
<%
Dim fso
Dim folder
Dim FolderDestination
Dim NewFolder
Dim serverpath
Dim FileMov
' Path From & Destination
serverpath = "E:\M_I\"
FolderDestination = "E:\TM\"
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.GetFolder(serverpath)
FileMov= FILE_VIDEO & (".avi")
if fso.FileExists (serverpath & FileMov)=true then
NewFolder= (FolderDestination & ("_") & SOGGETTO & ("_") & time())
fso.CreateFolder NewFolder
fso.CopyFile (serverpath & FileMov) , (NewFolder & ("\") & FILE_VIDEO & (".avi"))
end if
Set fso = nothing
Set folder = nothing
Set Destination = nothing
%>

Grazie
301 messaggi dal 31 maggio 2006
ciao
metti un response.flush prima di iniziare la copia

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.