Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/webdoc
diff options
context:
space:
mode:
authorJeremie Laval <jeremie.laval@gmail.com>2012-11-30 16:50:26 +0400
committerJeremie Laval <jeremie.laval@gmail.com>2012-11-30 16:50:26 +0400
commit1dd1d8899c124d5578c0e6ef658105be5fecdad8 (patch)
treeea73f2fbfbb88d16691b55fb462f1f569dc25600 /webdoc
parent78bf704a4009c546f634bd5eb2e346bc228e35f0 (diff)
[webdoc] Disable query string checking, doesn't play well with our URLS with generic parameters among other.
A better solution would be to remove the offending characters in requestPathInvalidCharacters configuration option but it's not currently implemented in our ASP.NET.
Diffstat (limited to 'webdoc')
-rw-r--r--webdoc/web.config2
1 files changed, 2 insertions, 0 deletions
diff --git a/webdoc/web.config b/webdoc/web.config
index 1cef88e2..5a50857b 100644
--- a/webdoc/web.config
+++ b/webdoc/web.config
@@ -8,6 +8,8 @@
</configSections>
<system.web>
<customErrors mode="Off"/>
+ <httpRuntime requestValidationMode="2.0" />
+ <pages validateRequest="false" />
<authentication mode= "Forms">
</authentication>
<!-- Avoid compilation errors when the Mono.Contributions.dll assembly is not found. The assembly is only on the go-mono.com server -->