Reputation: 4779
please look at the screen shots
i need to set upload file size upto 4GB
also this is my 3.5 web app why it is shown that version information as v2.0
is there any mistake in my config?
help me guys.
Upvotes: 1
Views: 1770
Reputation: 15861
in my opinion you never allow 4gb to upload at once, use segments. i suggest you to read following links, which has awesome explanation.
Suggestion :
you can set maxRequestLenght attribute, but setting this value to higher, will lead to hacker to crazy things. and your server will get load.
Upvotes: 2
Reputation: 390
The maximum size you can set in ASP.NET is 2097151Kb = 2Gb. If you need to upload files larger than 2Gb you must implement resumable upload interfaces and upload files with segments.
refer this "http://www.webdavsystem.com/server/documentation/upload/resumable_upload"
Upvotes: 2