Im getting a validation error when a user enters a Foreign name. An example is:
System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from the client (ctl00$pageContent$txtName="Pedro ú logo").
where the ú is being translated as & # 250 ; (without the spaces of course)
These foreign characters are acceptable and should not be causing a validation error. I want ASP.NET validation to validate using UTF-16 and not UTF-8
Many web sites, blogs, and forums say simply to turn off Validation.(ie ValidateRequest="false")
Is there a way around this WITHOUT turning off Validation? Turning off Validation is not acceptable for this application.
Thanks, Jeff