What I mean is - if user type something like:
Http://somepage.com/iNdex/sOmEaCtIoN
I would like to get /Index/SomeAction (or whatever it is called inside my controller). Since above URL is routed correctly by MVC engine, I guess there should be a way to do this.
EDIT:
I would like to get this in my View.
Edit 2:
I managed to solved my problem by passing type of the controller:
ViewContext.Controller.GetType()
and
Request.Url.AbsolutePath
to my method - and then using toLower() when searching for method match - still it would be better to simply get the name of controller and method that will be invoked by current request...