Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
1k views

MVC C# custom MvcRouteHandler - How to?

Does anyone have experiences in providing a custom MvcRouteHandler? In my application I'd like to implement a globalization-pattern like ">http://mydomain/en/about_ or ">http://mydomain/de/about_. ...
1
vote
1answer
49 views

.NET MVC URL Routing Help

I am trying to configure an ErrorController in my .NET MVC application, and I am unable to hit any actions on the controller currently, so I believe it may be because I need to register the URL route ...
1
vote
1answer
185 views

MVC 3 HyphenatedRouteHandler not compatible with Areas and duplicate controller names

I'm fairly new to MVC3, but I've spent quite a bit of time researching this and testing, and I cannot find a solution. There is another similar post on Stack, but it's unanswered after 7 months. ...
0
votes
1answer
87 views

How to specify namespace in custom route handler for MVC3?

I have written a custom route handler. Because I have Areas in my web site with conflicting controller names, I am getting the error: Multiple types were found that match the controller named... I ...
0
votes
1answer
30 views

Handling unreadable/not found files in MVC (PHP)

I'm still writing my simple MVC for learning and eventually make a framework for my apps and now I'm writing the routing class and have faced dilemma. Since this community is big, I wanted to hear ...
0
votes
1answer
281 views

MVC3 RouteHandler result ignores Area in the resolved Route - why?

I am working on splitting an MVC3 Application into two Areas. The existing application is going into one area (V1) and we are beginning a redesign in the second area (V2). I have the Views, Models, ...
0
votes
1answer
189 views

MVC n-level route building

I want to create a productcatalog with N-Level Categories e.g. /Catalog/Category1/Category2/../SubCategoryN/Product/{ProductActions}/{ID} And at the same time be able to ...