I am facing an issue in my application.I have file with 200mb size. I want to give user access of uploading files with size up to 500mb. My config file has following setting for uploading file request.
<httpRuntime
executionTimeout="7200"
maxRequestLength="2097151"/>
Still if i am uploading file with size of up to 200mb connection disrupt.I suppose i have already mention 2 hour limit in config.
Can anyone let me know the best and simplest way to upload file with huge size (Up to 500mb) ? Thanks in advance.