Reputation: 57
When i try to upload the Image to the Godaddy , i'm only able to upload lesser size of images .
I have already used this in my web-config , but still i am unable to upload the larger files
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
Upvotes: 3
Views: 211
Reputation: 8271
In you web config you need to add maxRequestLength
in System.web
along with the above config
Ex:
<httpRuntime maxRequestLength="600000" />
Upvotes: 1