i was wondering how i can alter the maximum size of a files, for using on a FileProperty.
I already modified the Web.Config :
<system.web>
<httpRuntime targetFramework="4.6.1" maxRequestLength="15360"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="15728640" />
</requestFiltering>
</security>
</system.webServer>
but a file with the size of 11MB is flagged as to large and therefor not permitted to be uploaded.
TIA
Oliver