Reputation: 5827
When I enter a url to system something like http://localhost:2055/test/5*5*5.html
. It throws http 400 request. What is the reason of that ?
Upvotes: 0
Views: 397
Reputation: 8908
Try looking in your Windows Event Viewer. It will more than likely be throwing an error due to an invalid character in the path. The invalid character will be the asterisk *
.
You can allow invalid characters in your paths if you absolutely require it, but it's not recommended and can get very sticky:
See Scott Hanselman's post here:
Upvotes: 1