怎么在IIS中设置默认编码?
web.config中配置
<system.web> <globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8"/> <httpRuntime executionTimeout="1000"></httpRuntime>
这个应该是在web.config中设置的。