ปัญหาอัพโหลดไฟล์ใหญ่ แล้วเกิด error ใน ASP.NETแก้ได้ที่ web.config โดยไปกำหนดขนาดของไฟล์ที่จะให้อัพโหลดได้ดังนี้
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="20971510" />
</requestFiltering>
</security>
</system.webServer>
<system.web>
<httpRuntime targetFramework="4.5" maxRequestLength="20971510" />
</system.web>
</configuration>
โดย 20971510 คือขนาดของไฟล์ที่กำหนดให้สามารถอัพโหลดได้ (หน่วยเป็น byte)