The validate-request tag has no wiki summary.
40
votes
4answers
13k views
ValidateRequest=“false” doesn't work in Asp.Net 4
Hi
I have a form at which I use ckeditor. This form worked fine but now doesn't work in Asp.Net 4. Any suggestions? I have ValidateRequest="false" directive.
6
votes
3answers
573 views
validateRequest=“false” is acting weird
(ASP.NET 4.0 C#)
I have my <httpRuntime requestValidationMode="2.0" /> in the webconfig. And
I have my validateRequest="false" in page directories.
On one page, I send some data (html) from a ...
3
votes
1answer
2k views
A potentially dangerous Request.Form value was detected from the client
I have one asp.net application, which has some problems while i am entering the special characters such as ": &#, " in the search box. If i enter this text in search box, i got the exception like ...
1
vote
1answer
70 views
Validation exception even with ValidateRequest=“false”
I have a textbox in a web form where an admin user can add HTML to be submitted for entry into the database.
In the past, I've always added ValidateRequest="false" to the Page when submitting HTML ...
1
vote
2answers
127 views
What do I need to do to protect my site if I choose to set ValidateRequest= false?
I've kind of just discovered that because ValidateRequest = true by default, that by default, you cannot enter "<" or ">" into any input field.
Not knowing too much about XSS attacks, for me, that ...
1
vote
1answer
446 views
Using ValidateRequest=“true” with HttpHandlers
I have an HTTP Handler set up in the HttpHandlers section of my web.config as follows:
<add path="myNamespace.myHandler.axd" verb="*" type="myNamespace.myHandler, myNamespace" ...
1
vote
1answer
174 views
How to validate data when validateRequest is set to “false”
Do sites like Stackoverflow or asp.net use validateRequest= "false" at their page directive? If "Yes" then how they are checking the user input and if "NO" then how they are able to postback the data ...
0
votes
1answer
10 views
ValidateRequest - getting error and display on current page
I have an asp.net application and I've realized, that if I set ValidateRequest to false, always a standard error page is displayed.
I've heard, that you can display a custom error page.
But I need ...
0
votes
2answers
37 views
Textbox validation forcing error
Vista, visual web developer express 2010, c#, asp.net, webforms. Running program with ctrl-F5. I'm the only person who will ever run this program ... and it will only ever run on my laptop using a ...
0
votes
0answers
64 views
How to prevent request validation when a link button posts back?
I have fallen foul of the ASP.New Request Validation breaking change.
I have a page with a LinkButton (not within an update panel) - also on the page is a hidden field (created with ...
0
votes
0answers
72 views
Hibernate validation
I want to validate password and confirm password on JSF page using hibernate scriptAssert but i am not using richfaces. My code for scriptAssert is -
...
0
votes
1answer
45 views
validate a url and then split it into the url and the domain name
Let say I have got a url
http://ex.com/blah?balchs
What I wanna do is to validate if the url is valid. The url
ex.com and /blah?balchs
How can I do this?
Also if I wanna validate if the ...
0
votes
3answers
320 views
Problem with Request Validation
In order to display some special text (like html data) I put validaterequest="false" in my aspx page. But unfortunatly I'm not even get that text to display.
So how can i display that (Html enabled) ...
0
votes
1answer
334 views
ValidateRequest per control
My ASP.NET page contains "ValidateRequest = true". However, there is one textbox in the page for which I don't want ASP.NET to validate. Is there a way to make it false for that one control? If there ...
0
votes
1answer
430 views
ASP.NET: A potentially dangerous Request.Form value was detected from the client
I have a client that claims to get the server error "A potentially dangerous Request.Form value was detected from the client"
...and this is likely to be that html is entered and something I need to ...