-
[RESOLVED] Upload files
Hello all,
I've got a problem with the FileUploadControl. I have an ASP .NET application, which need to upload files to a server. This works, but not for large files (> 5 mb), and not for some file types. For both problems I get an Server Error in Application.
Does anybody know where to look? I can't find anything wrong... Maybe in IIS?
Thanx in advance,
Marco
-
Re: Upload files
-
Re: Upload files
Have found it!!! ASP .NET accepts default only attachments up to 4096 bytes. So, in web.config, you have to set something like:
<httpRuntime maxRequestLength="8192" />
that sets the upload maximum up to 8 mb... That was what I wanted...
Anyway Mendhak, thanx for your help...
JMvV