上传大文件
上传大文件,需要做些处理
处理大文件时,需要使用多个可托管(manageable)内存块来处理文件。
httpRuntime maxRequestLength 指定提交的表单能被服务器端接收的最大值
httpRuntime requestLengthDiskThreshold 如何把上传表单缓存在文件系统
<configuration>
<system.web>
<httpRuntime maxRequestLength="10240" requestLengthDiskThreshold="100" />
</system.web>
</configuration>
2011-4-27 13:23 danny
上传大文件,需要做些处理
处理大文件时,需要使用多个可托管(manageable)内存块来处理文件。
httpRuntime maxRequestLength 指定提交的表单能被服务器端接收的最大值
httpRuntime requestLengthDiskThreshold 如何把上传表单缓存在文件系统
<configuration>
<system.web>
<httpRuntime maxRequestLength="10240" requestLengthDiskThreshold="100" />
</system.web>
</configuration>
2011-4-27 13:23 danny