In Strategy Web 2021, exporting a document to Excel crashes with .NET error if the report services document name contains special character(s), such as ‘&’.
A potentially dangerous Request. Path value was detected from the client (&).

A potentially dangerous Request. Path value was detected from the client (&).
ASP.NET 4.0+ comes with a strict built-in request validation. Part of it is the potential dangerous characters in the URL which may be used in XSS attacks. When ASP.NET finds an invalid character, such as ‘&’, in the path portion of a URL, it rejects the request and returns the error.
Here are the default invalid characters in the URL: < > * % & : \ ?
Refer to the following documentation provided by Microsoft for details:
https://docs.microsoft.com/en-us/aspnet/whitepapers/aspnet4/overview#0.2__Toc253429244
It’s recommended to avoid using these special characters in document names. If these characters need to be used for some reason, here is a workaround:
<httpRuntime requestPathInvalidCharacters="" requestValidationMode="2.0" maxRequestLength="1048576" />