Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a webpage that posts multiple form tags. It's an inline edit page, where I can either post one row at a time or multiple rows. Last night, without making any changes to the code or data, I started getting The URL-encoded form data is not valid error on multiple posts, although single row posts work fine.

share|improve this question
3  
Code and exception details please. We need more information. Read this: msmvps.com/blogs/jon_skeet/archive/2010/08/29/… – Oded Jan 11 '12 at 18:01
I'm afraid we'll need to see some code to get the context – Claudio Redi Jan 11 '12 at 18:02

2 Answers

The MS KB issue in question is: http://weblogs.asp.net/scottgu/archive/2011/12/28/asp-net-security-update-shipping-thursday-dec-29th.aspx

In a nutshell there is now an upper bound on the number of simultaneous HTTP form elements that may be posted. The default is now 1000 without explicitly changing it with this key in the <appSettings> portion of the web.config:

<add key="aspnet:MaxHttpCollectionKeys" value="some number greater than 1000" />
share|improve this answer
we started getting this on a asp.net MVC site. added the above config entry to our web.config file with a setting of 9000 and bam it was fixed. Thx. – Blake Mills Jun 15 '12 at 18:36
2  
+1 I was afraid this strange problem was going to kill my thursday, no it didn't. – daniloquio Jul 19 '12 at 14:15

There was a microsoft update and it may have caused your issue see link. http://knowledgebase.solarwinds.com/kb/questions/3476/Website+Error%3A+The+URL-encoded+form+data+is+not+valid

share|improve this answer
thank you very much for your help! it looks like the problem by all the symptoms but increasing the value of <add key="aspnet:MaxHttpCollectionKeys" value="1000" /> in the web.config did not help – Paul Kogan Jan 11 '12 at 22:31
1  
Try 2000. I had the same exact problem and this fixed it. – G_M Jan 12 '12 at 18:46
7  
Most will know this, but the key above goes in the "<appsettings></appsettings>" section of the web.config. – Solburn Jan 24 '12 at 20:20
1  
Important note to remember: hidden fields are going to count towards the items in the collection. Allocate accordingly. – Jonathan Bates Feb 10 '12 at 4:44
4  
All of these comments and the other answer are extremely helpful. However, this answer is just a simple link to a website, which is really useless (particuarly if that website goes down). -1 – Richard Jun 7 '12 at 19:03
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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