bug:"Operation is not valid due to the current state of the object."

异常信息: Operation is not valid due to the current state of the object.
错误源:System.Web
堆栈信息:   at System.Web.HttpValueCollection.ThrowIfMaxHttpCollectionKeysExceeded()
   at System.Web.HttpValueCollection.FillFromEncodedBytes(Byte[] bytes, Encoding encoding)
   at System.Web.HttpRequest.FillInFormCollection()

分析异常信息:System.Web.HttpValueCollection.ThrowIfMaxHttpCollectionKeysExceeded():很有可能是在页面提交时,某个数据过大导致。

有个数据维护程序,最近一直报这个错误,以前一直OK,程序没做过变动,经研究发现原来是微软发布的一次更新引起的.在这次安全更新中对于asp.net单次的提交量做了一个最大量限制1000,出现这个异常正是因为页面提交量超过了1000这个限制.这个可以在web.config中增加参数来更改。

解决方法:

   

value值根据需要可适当的修改。

你可能感兴趣的:(.net技术归结)