I do have an ajax form that contains a text area in my MVC project. The text area contains html string. I save this html string to database. On controller side, I use "ValidateInput(false)" for my method.
Everything is okay so far. I have no problem with Visual Studio. After I published the project, there occurs an error like the following. If I write a short html to text area, the method runs with no problem. However, if I write a long html string to text area, the page shows no response. I do not get an error or any result message.
I believe this is about IIS configuration since it works great in Visual Studio. What should I do to solve this problem?