如何限制asp.net中上傳檔案的大小的代碼

來源:互聯網
上載者:User

在web.config中控制上傳檔案大小的地方: 複製代碼 代碼如下:<system.web><httpRuntime executionTimeout="9999" maxRequestLength="2097151"/></system.web>

maxRequestLength是控制上傳大小得參數請求的最大大小(以KB為單位)。預設大小為 4096 KB (4 MB)。ExecutionTimeout 指示在請求被 ASP.NET 自動關閉前允許執行的最大秒數。預設值為 90 秒。單位是秒。詳細大家可以看Msdn。

http://msdn.microsoft.com/zh-cn/library/system.web.configuration.httpruntimesection.maxrequestlength%28v=VS.80%29.aspx

解決asp.net上傳檔案大小限制
對於asp.net,預設只允許上傳2m檔案,增加如下配置,一般可以自訂最大檔案大小.

<httpruntime executimaxrequestlength="40960" usefullyqualifiedredirecturl="false"/>

如果還不行,可以使用思歸提供的方案:

我們在上傳大檔案時都遇到過這樣或那樣的問題。設定很大的maxrequestlength值並不能完全解決問題,因為asp.net會block直到把整個檔案載入記憶體後,再加以處理。實際上,如果檔案很大的話,我們經常會見到internet explorer顯示 "the page cannot be displayed - cannot find server or dns error",好像是怎麼也catch不了這個錯誤。為什嗎?因為這是個client side錯誤,server side端的applicati

handling server error when upload file too large

解決的方法是利用隱含的httpworkerrequest,用它的getpreloadedentitybody 和 readentitybody方法從iis為asp.net建立的pipe裡分塊讀取資料 複製代碼 代碼如下:iserviceprovider provider = (iserviceprovider) httpcontext.current;
httpworkerrequest wr = (httpworkerrequest) provider.getservice(typeof(httpworkerrequest));
byte[] bs = wr.getpreloadedentitybody();
....
if (!wr.isentireentitybodyispreloaded())
{
int n = 1024;
byte[] bs2 = new byte[n];
while (wr.readentitybody(bs2,n) >0)
{
.....
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.