We noticed that several machines have problems with URLs with hash parameters.
When debugging a request with the URL:
http://domain.com/Entity(%23{number-here}
We see in the Application_BeginRequest
method in the global.asax
file the URL:
http://domain.com/Entity(#23{number-here}
in Url.OriginalString
and the Url.LocalPath
has http://domain.com/Entity(
and all the chars after the hash are in Url.Fragment
.
When running exactly the same application on machines running Windows 8.1 and IIS 8.5 it works as expected, the Url.OrinalString
is http://domain.com/Entity(%23{number-here}
.
I can't see anything suspisous in the URL rewrite section in the web.config
or in the IIS configuration.
What can be the reason for this behaviour?