I am doing a bad thing here. I am asking a question without trying out first by hopping that someone knows an easy way of doing this.
Any chance we can make ASP.NET MVC Routing system case sensitive? I would like the following two Urls to be different:
example.com/a
example.com/A
Do we have an easy fix or should write our own handler for this.
I haven’t tried it, but I would think that if you use a regular expression route constraint that only matched the uppercase and lowercase seperate, that would work. I don’t think it’s a good idea though.