I am having issues regarding this Radupload control with the Telerik library. I can only upload files to my server less than 5 Mb ... Why? Yet I have followed the tutorials and configured the web.config file with access rights to files.
Here is my code config
RadUpload :
<telerik:RadUpload ID="radUpload_FileShare" runat="server" style="margin-left:140px;margin-top:20px;"
InitialFileInputsCount="1"
MaxFileSize="318000000"
MaxFileInputsCount="14"
OnClientFileSelected="DeleteInvalidInputs_File"
controlobjectsvisibility="Default"
></telerik:RadUpload>
Web.config :
<system.web>
<httpRuntime
executionTimeout="1000000" maxRequestLength="500000" />
</system.web>
And i have add acces in my folder with "NETWORKSERVICE"
Thank's a lot
Not sure if you're still looking for an answer here since this is an older question, but IIS 7 has a different place to set the max file upload size. See this link for more information:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="500000" />
</requestFiltering>
</security>
</system.webServer>