FYI I am using .NET 4.0 / MVC 3.
In my controller, the following is my code:
[HttpPost] [ValidateInput(false)] public ViewResult Edit(ContentTemplate
I just installed ASP.NET MVC 3 RC2, and this bug has been fixed. The following code works as expected now.
[HttpPost] [ValidateInput(false)] public ViewResult Edit(FormCollection form) { }