我正在使用MVC 5
,我遇到了这样的问题。使用EF6
和ASP.net
,我将一些数据存储在这样的表格中。
当我尝试编辑像这样的长文本时
这些交易,其中'时钟日期'记录,已从任何设备轮询或由PC时钟承诺。 '时钟日期'显示交易执行时设备上的时间。\ n通常'时钟日期'应该等于'日期'交易。如果没有,那么该交易后来被'应用'中提到的用户修改。 “提交日期”中提及的日期和时间列柱
我收到此错误
此请求的网址长度超过配置的maxUrlLength值。
我搜索了Google
和StackOverFlow
并找到了一些解决方案,如下所示,但它们引用了MVC
的旧版本,例如MVC
3,4,4.5。我正在使用MVC 5
,无法找到解决我的版本的方法。
MVC 3
<httpRuntime maxUrlLength="1024" relaxedUrlToFileSystemMapping="true"/>
MVC 4.0
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime maxUrlLength="2000"/>
但我需要MVC 5.
的内容感谢您的帮助。
答案 0 :(得分:0)
这对我有用。我将maxUrlLength属性添加到了现有的MVC 5 Web API 2 web.config。
<httpRuntime targetFramework="4.6.1" maxUrlLength="300" />