Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
7k views

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 directory and Views directory) <pages validateRequest="false" ...
4
votes
2answers
205 views

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 set requestValidationMode in web.config to 2.0: 4.0 (the default). The ...
3
votes
1answer
467 views

“A potentially dangerous Request.Path value was detected from the client (%).” but request seems to be fine

ASP.Net MVC 3.0, .NET 4.0, IIS 7 I know it has been asked a many times, but I still can't figure out what's wrong with it. I get these messages only occasionally (less than 1 a day), and I get about ...
3
votes
1answer
490 views

How to add request validation errors to ModelStateDictionary in ASP.NET MVC?

Investigating the security of a system I'm building with ASP.NET MVC 2 led me to discover the request validation feature of ASP.NET - a very neat feature, indeed. But obviously I don't just want to ...
2
votes
1answer
281 views

ASP.NET MVC2 on .NET 4.0: is [ValidateInput(false)] enough?

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 ...
2
votes
1answer
83 views

How to unit test for turning off request validation?

I'm new at this TDD thing but making a serious effort, so I'm hoping to get some feedback here. I created a little web service to minify JavaScript, and everything was nice, with all my tests ...
2
votes
1answer
80 views

What are the risks of allowing quote characters as part of a URL parameter?

I need to allow the user to submit queries as follows; /search/"my search string" but it's failing because of request validation, as outlined in the following 2 questions: ...
1
vote
1answer
340 views

Disabling ASP.NET Request Validation (for just one page) in a .NET 3.5 project hosted on IIS 7.5 with only .NET 4.0 installed

I'm having a problem with request validation in ASP.NET webforms that I am fairly sure is down to me hosting a .NET 3.5 project on IIS 7.5 (Windows 7 - local development machine). Essentially I'm ...
1
vote
0answers
75 views

How to modify request validation?

I need to submit requests to my application as part of the URL, which contain quoted strings, such as /search/"my query" this is throwing an error, as outlined in the following question: ...
1
vote
5answers
3k views

I can't turn off Request Validation for an ASP.NET MVC Controller [closed]

I am trying to turn off Request Validation for all action methods in a controller by doing this: [ValidateInput(false)] public class MyController : Controller { ... The reference I am using ...
0
votes
1answer
32 views

Cancel button that does not send form data

Inside an UpdatePanel I have two PlaceHolders which are never visible at the same time. In one PlaceHolder I let the user choose an article to edit and when an article is selected it is displayed in ...
0
votes
1answer
217 views

AllowHtml, HttpRequestValidationException and ModelState

I have this viewmodel public class FooBarViewModel { public string Foo { get; set; } [AllowHtml] public string Bar { get; set; } } Instead of throwing a HttpRequestValidationException ...
0
votes
0answers
101 views

Custom validator ASP.NET MVC3 for RequestValidation exception

I know I need to disable the request validation on the controllers' method so I don't just get the RequestValidation exception thown. I want to use the built in validation attribute system, so when ...
0
votes
2answers
319 views

Potentially dangerous Request.Form value only from IE8

I have a Facebook-style modern button control whose client side markup looks like: <button id="ctl00_uxBtn" value="ctl00$uxBtn" name="ctl00$uxBtn type="submit"> <div ...
0
votes
1answer
2k views

A potentially dangerous Request.Form value was detected from the client in .Net 4

So, this whitepaper describes one of the breaking changes in .Net 4 to be the error message "A potentially dangerous Request.Form value was detected from the client in", and the fix to enter into the ...