使用cuteeditor进行视频上传
可能是asp.net限制了上传文件的大小,默认为4M,解决:
在web.config里加下面一句,加在<System.web></System.web>之间
如下:
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="3600"/><!--加上此句,上传限制有100M--></system.web>
在web.config里加下面一句,加在<System.web></System.web>之间
如下:
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="3600"/><!--加上此句,上传限制有100M--></system.web>