Possible Duplicate:
ASP.NET, MS11-100, and POST

After applying the updates from the Microsoft security bulletin MS11-100 certain forms on our site stopped working. The exception says "Operation is not valid due to the current state of the object." It also says "[HttpException (0x80004005): The URL-encoded form data is not valid.]" We haven't changed any code??

link|improve this question
This will save you some searching: stackoverflow.com/questions/8684049/… – Anish Jan 9 at 18:20
feedback

closed as exact duplicate by Andrew Barber, Filburt, Bo Persson, Yi Jiang, casperOne Dec 31 '11 at 1:34

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The main thing that this patch accomplishes is that it limits the number of name/value pairs in submitted form data to 500. I'm not sure what happens, frankly, if you have a valid form which exceeds this; but in your case, the first thing I'd check would be whether or not those forms exceeded this limit.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.