本文主要是介绍asp.net 错误解决方案--对象的当前状态使该操作无效的解决办法(peration is not valid due to the current state of the object),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误提示:
异常详细信息: System.InvalidOperationException: 对象的当前状态使该操作无效(Operation is not valid due to the current state of the object)
原因:
出现这个异常的原因正是因为2012年12月29号那次微软发布的最后一次非正常更新程序引起的.在这次安全更新中对于asp.net单次的提交量做了一个最大量限制1000,如果页面提交数据大小超过了1000这个限制就会报这个错误。
解决办法:
计事本打开web.config文件,在</appSettings>这行前面添加下面红色的内容,如下。
<appSettings>
....
<add key="aspnet:MaxHttpCollectionKeys" value="5000" />
</appSettings>
这篇关于asp.net 错误解决方案--对象的当前状态使该操作无效的解决办法(peration is not valid due to the current state of the object)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!