Solution : A potentially dangerous Request.Path value was detected…
- Tuesday Jan 24,2012 12:22 AM
- By Wickasitha
- In ASP.NET, IIS 7, Microsoft, Tips & Tricks, Windows server 2008
A potentially dangerous Request.Path value was detected from the client (?).
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: A potentially dangerous Request.Path value was detected from the client (?).
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
Stack Trace:
[HttpException (0x80004005): A potentially dangerous Request. Path value was detected from the client (?).] System.Web.HttpRequest.ValidateInputIfRequiredByConfig() +8884233 System.Web.ValidateRequestExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +35 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +184 |
Solution
<system.web>
<httpRuntime requestValidationMode=”2.0″ requestPathInvalidCharacters=”" />
<pages validateRequest=”false” />
this worked form me.


Leave a reply