HTTP 错误 404.15 - Not Found

请求筛选模块被配置为拒绝包含的查询字符串过长的请求。

最可能的原因:

  • Web 服务器上的请求筛选被配置为拒绝该请求,因为查询字符串过长。

可尝试的操作:

  •   applicationhost.config 或 web.config 文件中的 configuration/system.webServer/security/requestFiltering/requestLimits@maxQueryString 设置。

 

 

 

 

 

解决的办法是在Sysweb配置<httpRuntime requestValidationMode="2.0" />

From 表单改成post 提交

action  打上标签,如下

[HttpPost]
[ValidateInput(false)]
public ActionResult Save(Template Temp, string rte1)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2021-06-19
  • 2022-01-03
猜你喜欢
  • 2021-11-11
  • 2021-05-25
  • 2022-12-23
  • 2021-09-09
  • 2022-02-01
  • 2022-12-23
相关资源
相似解决方案