Forum de discussion
Forum « Programmation ASP » (archives)
Pb Limite Upload
Envoyé: 20 octobre 2004, 3h08 par oXoiD
j'ai un gros problème que je dois absolument réglé au plus vite; voilà, j'ai fait une partie upload download sur mon intranet et ya une partie qui ne marche pas :
J'arrive a faire fonctionner mon code, l'upload fonctionne, mais que pour des fichiers <2 Mo et je pîge pas pourquoi, ocmment faire pour agrandir cette limite ?
help ! merci
ps : voici le code :
<%
'Initialize the component
Set myup = Server.CreateObject("NetVIOSUpload.Upload")
'Set the name of the GUI control used in acquiring the file (from the first file)
myup.FileUploadControl = "File1"
'Set the path on the web server in which file is to be saved
myup.SavePath = "d:\intranet\transfert"
'Set the maximum allowable file size in bytes
myup.FileType = "Alltypes"
'myup.MaximumSize = 500000000000
'Set the overwrite property
myup.OverwriteFiles = True
'Perform the upload
upresult = myup.Upload()
If (upresult = "Success") Then
'Print an optional report of files downloaded
For i = 1 To myup.GetFileCount
Response.Write "The file - " & myup.GetFileName(i) & " of size " & myup.GetFileSize(i)
Response.Write " was successfully uploaded!"
Response.Redirect("transfertok.asp")
Next
else
Response.Redirect("transferterreur.asp")
End If
'Destroy the upload component instance after use
Set myup = Nothing
%>
+++
Réponses
|