Top "Request-validation" questions

Login request validation token issue

I have been going through the error logs of a development project and found the following error (name changed to …

asp.net-mvc asp.net-mvc-4 request-validation
Disable request validation redirect in Laravel 5.4

So I'm trying to develop a rest API for an internal project, and I've got an issue where when the …

json laravel request-validation
How do I disable request validation without setting RequestValidationMode to 2.0?

We've just upgraded to ASP.NET 4.0, and found that requestValidation no longer works. The MSDN docs suggest we need to …

c# .net asp.net request-validation requestvalidationmode
How do I get ONLY the validated data from a laravel FormRequest?

Lets say I have the following Custom Request: class PlanRequest extends FormRequest { // ... public function rules() { return [ 'name' => 'required|string|…

php laravel validation request-validation
I can't turn off Request Validation for an ASP.NET MVC Controller

I am trying to turn off Request Validation for all action methods in a controller by doing this: [ValidateInput(false)] …

c# .net asp.net asp.net-mvc request-validation
Laravel 5.5 - Validate Multiple Form Request - at the same time

The question is already asked here for a previous version of laravel and not yet answered. I have a html …

php laravel validation laravel-5.5 request-validation
Request Validation - ASP.NET MVC 2

Has request validation changed for ASP.NET MVC 2, more precisely, not validating? I did the following: Web.configs (in App …

asp.net-mvc asp.net-4.0 request-validation
Control level ValidateRequestMode has no effect

I'm using ASP.NET WebForms (.NET 4.5) and have an "content block" control, which is reused on a number of pages. …

c# asp.net .net webforms request-validation
How do I override RequestValidation in ASP.NET WebAPI

I'm having problems with requests that include 'dangerous characters' as part of a Web API URL. The Url includes an &…

asp.net-web-api request-validation