Reputation: 1001
in asp.net I cant set my upload limit with the value:"maxAllowedContentLength". This value has the type uint32, that means it has a maximum size of: "4294967295". The problem is, that 4gb for me, are not enough. Is there a way, to increase this value?
Upvotes: 0
Views: 95
Reputation: 269
It seems that increasing the size more than the range of int32 gives error in configuration settings.
However, if you must upload files with size larger than maximum than you might consider the possibility of splitting the files into smaller chunks and then transfer and store them on server and then creating a process to combine them when a user asks to download the file.
Upvotes: 1