换成NET2.0或者 修改WEBCONFIG文件
用计事本打开web.config文件
找到
<httpRuntime maxRequestLength="10240" executionTimeout="60" />
修改为
<httpRuntime maxRequestLength="10240" executionTimeout="60" requestValidationMode="2.0"/>
如果没有<httpRuntime这行的话找到</system.web>,在这句前面加上
<httpRuntime maxRequestLength="10240" executionTimeout="60" requestValidationMode="2.0"/>