当我在 Windows Azure 模拟器(开发环境)上运行 Asp.Net MVC 2 项目时,我遇到了下面提到的问题
我的 web.config 文件如下:
<httpRuntime maxUrlLength="4096" relaxedUrlToFileSystemMapping="true" maxQueryStringLength = "4096" requestValidationMode="4.0" />
我的带有查询字符串的 URL 如下:
注:以上有1490 characters
我的控制器 Action 方法的重定向如下:
return RedirectToRoute("booking", new { action = "index", providerKey = providerKey, ownerKey = ownerKey, arguments = arguments, step = step });
注意: arguments
具有上述查询字符串详细信息
如何摆脱这个错误页面?