ASP.NET MVC and httpRuntime executionTimeout

前端 未结 5 1861
长情又很酷
长情又很酷 2020-12-07 16:55

I would like to increase the httpRuntime executionTimeout for a subsection of an ASP.NET MVC application.

In a regular Web App, you could u

5条回答
  •  太阳男子
    2020-12-07 17:33

    I notice that you are specifically trying to increase the timeout on an upload page. I have had some success with a "chunking" uploader called plupload. A relatively simple MVC actions can be setup to receive the upload's chunks, appending each chunk as it is received. With the small chunks, you will not need to increase the timeout. Of course there might be some browser limitations, but n

    http://plupload.com/

提交回复
热议问题