Good day!
I plan to upgrade my ASP.NET MVC 2 application to .NET 4.0, and have a couple of questions:
Is having
[ValidateInput(false)]
on action enough to accept HTML, or I need to set<httpRuntime requestValidationMode="2.0"/>
as described here: ASP.NET 4 Breaking ChangesHow it will work if I upgrade ASP.NET MVC to version 3 (in addition to uprading to .NET 4.0)?
Thanks in advance!