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

  • Home
  • SEARCH
  • 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 88307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:32:22+00:00 2026-05-10T22:32:22+00:00

How to hide controller name in Url? I use the ASP.NET MVC. The original

  • 0

How to hide controller name in Url?

I use the ASP.NET MVC.

The original url is: http://www.sample.com/Users.mvc/UserDetail/9615

The ‘Users’ is controller name, the ‘UserDetail’ is action name, and the ‘9615’ is UserId.

How can I hide the controller name and action name in the url.

Just like this: http://www.sample.com/9615

I have writed the following code in the Global.ascx.cs to hide the action name:

routes.MapRoute(              'UserDetail',             // Route name              'Users.mvc/{UserId}',              // URL with parameters              new { controller = 'Users', action = 'UserDetail', UserId = '' }  // Parameter defaults             ); 

Using the above code I hid the action name and got this url: http://www.sample.com/Users.mvc/9615

But how can I hide the controller name and get this url: http://www.sample.com/9615

Thanks.

  • 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. 2026-05-10T22:32:23+00:00Added an answer on May 10, 2026 at 10:32 pm

    The idea is the same. You do just the thing you did to the action. However, your problem arises from the fact that IIS is probably not mapping http://www.xyz.com/1234 to ASP.NET runtime. To do so in IIS7, enable integrated mode and in IIS6, add a wildcard mapping in handler map that maps everything to ASP.NET.

    To add a wildcard map, see http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx (Search for ‘IIS6 Extension-less URLs’ in that page)

    After that, simply add a route:

    routes.MapRoute('UserDetails', '{UserID}/{*name}',      new { controller = 'Users', action = 'UserDetail' , UserID=''}); 

    This should do the trick.

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

Sidebar

Related Questions

After having read Ian Boyd 's constructor series questions ( 1 , 2 ,

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.