怎么在IIS中设置默认编码?
微信里点“发现”,扫一下
二维码便可将本文分享至朋友圈。
web.config中配置
<system.web> <globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8"/> <httpRuntime executionTimeout="1000"></httpRuntime>
这个应该是在web.config中设置的。