PDA

View Full Version : آپلود فایل بزرگ(یا تعیین سایز برای آپلود)



hadi0x7c7
دوشنبه 16 تیر 1393, 16:51 عصر
سلام برای آپلود فایلای بزرگ باید چی کار کرد؟ این راه حل رو انجام دادم ولی خطا میده
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.web>


اینم خطا
HTTP Error 500.19 - Internal Server Error

The requested page cannot be accessed because the related configuration data for the page is invalid.

jaykob
دوشنبه 16 تیر 1393, 17:09 عصر
سلام

من فقط به شکل زیر تغییر رو می دم بدون مشکل عمل می کنه البته برای IIS 7 :




<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" /> <!--50MB-->
</requestFiltering>
</security>
</system.webServer>

پیش فرض 4 مگابایت هست که شما اینجا می تونید به کیلوبایت مقادیر بیشتری رو تعریف کنید . شاید محدودیتی از طرف وب سرویس هم باشه ...

به شکل زیر هم می تونید عمل کنید





<configuration>
<system.web>
<httpRuntime maxRequestLength="xxx" />
</system.web>
</configuration>