Я загружаю видео онлайн и хочу ограничить допустимый размер. Я пытался добавить это к web.config
<httpRuntime executionTimeout ="3600" maxRequestLength ="2000" appRequestQueueLimit ="100" requestValidationMode ="2.0" requestLengthDiskThreshold ="2000000" />
Но это не работает.
Вот мой код ASP:
'Creation du Guid
Set TypeLib = Server.CreateObject("Scriptlet.TypeLib")
guid1 = TypeLib.Guid
guid1 = Left(guid1, Len(guid1)-2)
guid1 = replace(guid1, "{", "")
guid1 = replace(guid1, "}", "")
Set TypeLib = Nothing
'autoriser les mp4
set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
mySmartUpload.AllowedFilesList = "mp4"
mySmartUpload.DeniedFilesList = "bat,exe,com,asp,php,pdf,txt,doc,xls,jsp,aspx"
mySmartUpload.Upload
'chem="imagesCrop/"
ext1 = mySmartUpload.Files.Item(1).FileExt
video1 = cstr(guid1) & "." & ext1
set fichier1 = mySmartUpload.Files.Item(1)
fichier1.SaveAs(server.MapPath(chem) & "\" & video1)
set mySmartUpload = nothing
и мой ввод HTML:
<input class="champ" type="file" name="f1" >