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 7652133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:41:18+00:00 2026-05-31T11:41:18+00:00

I create a simple MVC3 application and then I add in the following route

  • 0

I create a simple MVC3 application and then I add in the following route to see if such a custom route works.

routes.MapRoute("self",
                "route/{message}",
                new { controller = "Route", action = "Message" }
                );

And I use the following url
http://localhost:2554/Route/message
but it doesn’t work.

  • 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-05-31T11:41:20+00:00Added an answer on May 31, 2026 at 11:41 am

    What does your Message action look like? Does it take any parameters? What type are they?

    I suspect that you really want something that looks like:

     routes.MapRoute("self",
                "route/{message}",
                new { controller = "Route", action = "Message", message = UrlParameter.Optional }
                );
    

    with an action that looks like

      public class RouteController
      {
           [HttpGet]
           public ActionResult Message( int message )
           {
               ...
           }
      }
    

    so that the URL looks like http://localhost:2554/route/1 (or some other id)

    Note that the order in which the routes are specified is important. This needs to come before the default route to be effective.

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

Sidebar

Related Questions

I know how to create simple object and add dynamically properties to it. object
I would like to create simple objects at runtime (textbox, label, etc) and add
I built a very simple MVC3 application to do a little demo, but I'm
I have created a sample MVC3 application for BookShop. I have a create action.
I'm playing around with MVC3 and trying to create a simple contact form that
Ok I am near wits end here. I've got a simple MVC3 application with
I have created a simple application using MVC3 and the site is based on
I develop a simple MVC3 CRUD application - simple controllers / views, which uses
I need to create simple reusable javascript object publishing several methods and parameterized constructor.
How to create simple C# Binary socket server (Not WCF!) Who knows the Simplest

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.