I would like to know something .
When I upload a file to the server, when the file around 25mb i can upload it .When it's more, it looks like the response is not ending, so it's not uploading...
This is my webconfig , and on the server the time request limit is 9999 seconds ..
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
<sessionState cookieless="false"/>
<httpRuntime maxRequestLength="1048576"/>
</system.web>
<appSettings>
<add key="FolderPath" value="uploads" />
</appSettings>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
</configuration>