Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 asp.net FileUpload 上传一些文件,如 mp4、mp3、jpg、png 和 psd。每个文件都可以正常工作,但页面只显示当我尝试上传 mp4 文件时与 localhost 的连接被中断。我不知道是什么错误或问题。请帮忙。
请求大小限制可能存在问题,因为 MP4 文件往往很大。很大。尝试更改您的配置web.config:
web.config
<configuration> <system.web> <httpRuntime maxRequestLength="65536" /> </system.web> </configuration>
并在上传前检查文件大小。