Using Attribute Routing you can define a route name. Is there a way I can get the name of the used route from inside my view?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
According to this answer, you can use:
to get route data. Then according to the right answer of this post: "How to get a custom attribute from object instance in C#", you can pull out the attributes. |
|||
|
|
This doesn't sound like a real good idea. You should probably add the route name to view data or the view model instead. |
|||