ASP.NET Tutorial/Configuration/httpRuntime

Материал из .Net Framework эксперт
Версия от 14:57, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Enable files up to 10MB to be posted, changes the buffering threshold to 100KB

   <source lang="csharp">

<configuration> <system.web>

 <httpRuntime
      maxRequestLength="10240"
      requestLengthDiskThreshold="100" />

</system.web> </configuration></source>