The tag has no wiki summary.

learn more… | top users | synonyms

-3
votes
2answers
156 views

I need to validate a query string in asp.net [closed]

Dim objItems As clsItems 'Loads the pages with the Gridview and Infomation pretaining to the Item selected Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load Dim ...
1
vote
1answer
57 views

Show script depending on innerwidth - without “potentially dangerous request.form”

What I want: I have a situation where I want to show affiliate ads on my website. These are basically javascripts, with content within them. As my site has a responsive design, I want to load ...
0
votes
4answers
362 views

Alternative to ValidateRequest=“false”

Is there a way to prevent the error "A potentially dangerous Request.Form value was detected from the client" other than setting ValidateRequest="false"? Update: I removed the "on the page" part. I'd ...
0
votes
1answer
93 views

ValidateRequest stopped working after changing .net to 4.0

I get this error after changing from .Net 4.5 to 4 the error says: "A potentially dangerous Request.Form value was detected from the client" In my 4.5 solution i have "ValidateRequest="false"" in ...
0
votes
1answer
80 views

ValidateRequest at Model level

I need to figure out a way to set ValidateRequest at model...I understand that I could set ValidateRequest to false at the web config level...but I don't want to do so at the application level, I ...
1
vote
1answer
2k views

validateRequest and requestValidationMode dont work with .net 2.0

I am hosting WCF Service in IIS 7. They are running under .net version 2.0. Everything is working fine. But lately, i am getting error list "Potentially Dangerous request ...". I searched on the ...
1
vote
3answers
1k views

Disable ValidateRequest for a specific page

Friends I am in trouble and need your help. For database management in the admin section of my website I have few text fields where I would like to input data along with HTML tags. As soon as i add ...
0
votes
1answer
188 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
121 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 ...
1
vote
1answer
312 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
280 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
1k 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" ...
6
votes
3answers
2k 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 ...
0
votes
1answer
74 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
663 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) ...
1
vote
1answer
272 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 ...
5
votes
2answers
8k 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 ...
76
votes
5answers
39k 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.
0
votes
2answers
518 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
765 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 ...