Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8514593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:54:48+00:00 2026-06-11T04:54:48+00:00

I have been developing an MVC application locally (IIS Express) and deploing to IIS

  • 0

I have been developing an MVC application locally (IIS Express) and deploing to IIS 7.5 periodically in order to test.

I have just added a new named Route to my Global.asax.cs file:

        routes.MapRoute(
            "MyCustomRoute", // Route name
            "{documentID}/{year}", // URL with parameters
            new { controller = "Documents", action = "CurrentVersion", year = DateTime.Now.Year }, // Parameter defaults
            new { documentID = @".*\d+.*" } // Regex matches only where documentID contains numerical values.
        );

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Documents", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );

I have set up a Html.RouteLink using “MyCustomRoute” and all works well on my local machine.
However, when I run this on the Web Server, Html.RouteLink is generating an empty link. In addition, if i enter the URL directly into the browser, it gives a 404.

It seems as if the Route has not registered. What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T04:54:49+00:00Added an answer on June 11, 2026 at 4:54 am

    It’s impossible for us to debug your route without seeing the code, and if you use the right tools, it will be very easy for you to see what’s going on and what is being matched.

    Phil Haack built an excellent open source tool called RouteDebugger. You can get it through NuGet and read about how to use it at http://haacked.com/archive/2011/04/12/routedebugger-2.aspx . A more robust version of this project is available as RouteMagic and is at Codeplex and git. Details at this blog post

    UPDATE

    Based on your regex, you’re documentID is not being matched due to greediness. .* will match everything, so you it will never have the opportunity to match \d+, because the preceding pattern will cannibalize all matches. You can read about regex greediness and laziness at http://www.regular-expressions.info/repeat.html .

    UPDATE 2

    Regexes are probably the thing I’m worst at programming, and the only reason I recognized that issue is because I am so bad at them that I’ve run into the same issue about a million times. That being said, I think @"(.*?)(\d+?)(.*?)" will do the trick. It should work without any of the parentheses as well (like @".*?\d+?.*?"), but I like to keep them in there for readability (mostly because I’m so bad at them).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been developing an asp.net mvc application where i need to make large
I've been developing an application using asp.net MVC, and I have some configurations that
I've been developing a simple Spring MVC application as a reporting service. Locally, I've
I have an ASP.NET MVC application that I'm working on. I've been developing it
I have been developing the application for drawing, and I have the problem: my
I have been developing the application for drawing and I need to detect double
I have been developing the application for drawing, and there is the code: public
I have been developing the application for drawing and I have some problems: the
I have been developing the application, and I need that drawingg is executed in
I have been developing in ASP.NET MVC for a short while. Up to this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.