本文介绍了如何在ASP.net应用程序中上传大小为500 MB或更大的文件。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请告诉我在ASP.net应用程序中上传大文件的可能方法。这在接受采访时被问到,我不知道如何实现这一目标。请告诉我上传大文件的可能方法(比如500 MB excel文件)

please Let me know the possible ways of uploading a large file in an ASP.net application. This was asked in an interview and i have no idea on how to achieve this. Please Let me know the possible way to upload a file of large size (say 500 MB excel File)

推荐答案


<httpruntime maxrequestlength="524288000" />





默认情况下,此属性设置为4mb。



以下链接将帮助您找到详细答案。







问候



Varun Sareen



By default this property is set for 4mb.

Below link will help you find the detailed answer.

how to upload file of size 500 MB or more in ASP.net aplication.

Regards

Varun Sareen


这篇关于如何在ASP.net应用程序中上传大小为500 MB或更大的文件。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 14:52