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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:43:06+00:00 2026-06-11T02:43:06+00:00

I have a controller called Entry that has three ActionResults: View , New ,

  • 0

I have a controller called Entry that has three ActionResults: View, New, and Edit.

The View action accepts a string parameter representing a specific Entry object.

I’m trying to figure out how to not show the word “View” in the URL. In other words, I’d like it to act like a default action.

Ideally I would like the URLs read as:

  • /entry/2DxyJR for a given entry
  • /entry/new to create a new entry
  • /entry/edit/2DxyJR to edit a given entry

I believe this can be accomplished with a custom route but am unsure how to actually do it. This route works for hiding “View”, however /new and /edit don’t work.

routes.MapRoute(
    name: "Entry",
    url: "entry/{id}",
    defaults: new { controller = "Entry", action = "View", id = UrlParameter.Optional }
);

Sorry for the extreme noobishness of this, but I’m still trying to wrap my head around how routing works.

  • 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-11T02:43:08+00:00Added an answer on June 11, 2026 at 2:43 am

    You’ll need to be sure you put the more specific ones on top, so the entry/id will have to be last, because it appears you have string based id’s.

    This will match the most explicit (new) first, then if there’s edit in the url, then if not fall through to the view action.

    routes.MapRoute(
        name: "Entry",
        url: "entry/new",
        defaults: new { controller = "Entry", action = "New" }
    );
    
    routes.MapRoute(
        name: "Entry",
        url: "entry/edit/{id}",
        defaults: new { controller = "Entry", action = "Edit", id = UrlParameter.Optional }
    );
    
    routes.MapRoute(
        name: "Entry",
        url: "entry/{id}",
        defaults: new { controller = "Entry", action = "View", id = UrlParameter.Optional }
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a controller called Diary with an action called View . If I
I have model/controller called notification. I want to make a new url so that
Hi guys i have controller which returns a partial view, the controller is called
I have a controller method called Edit in which the user can edit data
I have a simple controller called list_controller with an index that basically does def
Ok, so here's the situation. I currently have a view controller called MainViewController which
I have a controller that is called with AJAX (sends JSON data), so I
I have a controller called Account with an action with the following signature: public
I have a controller called votes_controller.rb . In that file there is the following
I have a controller called MetricsController with a single action method: public class MetricsController

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.