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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:30:48+00:00 2026-05-25T20:30:48+00:00

I have a question, can this be done using ASP.NET MVC (Razor, and MapRoute)?

  • 0

I have a question, can this be done using ASP.NET MVC (Razor, and MapRoute)?

Example

  • Category/ – calls controller Category and Index function
  • Category/{State_name} – calls controller Category and Cities(State_id) function, returns all cities inside that state.

So URL is displaying state name , but Cities function receive state id?

  • 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-25T20:30:48+00:00Added an answer on May 25, 2026 at 8:30 pm

    Yes u can, try

    public class CategoryController : Controller {
    
        // GET: /Category/
        // OR
        // GET: /Category/State_name
        public ActionResult Index(string State_name) {
            if (!string.IsNullOrWhiteSpace(State_name)) {
                int? State_id = FindStateIdFromStateName(State_name); // retrive state_id from datastore where state_name == State_name
                if (State_id.HasValue) { // means the currect state_name passed to action
                    var model = FindStateById(State_id.Value);
                    return View("Cities", model); // will renders Cities.cshtml with specified model
                } else {
                    // means the specified state_name not found! u can do something else, or allow continue bellow lines
                }
            }
            return View(); // will render normal Index.cshtml
        }
    
    }
    

    Let me know if you have any questions or need clarifications on any part.

    UPDATE

    I have one issue with the way! You get the ID from db with State_name, then get the model from db by State_name! Why not retrieve
    model from db by State_name at the first time?
    look:

    public class CategoryController : Controller {
    
        // GET: /Category/
        // OR
        // GET: /Category/State_name
        public ActionResult Index(string State_name) {
            if (!string.IsNullOrWhiteSpace(State_name)) {
                var model = FindStateByName(State_name);
                if(model != null)
                    return View("Cities", model);
                else
                    // means the specified state_name not found! u can do something else, or allow continue bellow lines
            }
            return View(); // will render normal Index.cshtml
        }
    
    }
    

    and if you are on EF, then you can create this method:

    public State FindStateByName(state_name){
        using(var context = new YourEntityContext()){
             return context.States.SingleOrDefault(s => s.Name.ToLower() == state_name.ToLower());
        }
    }
    

    Why not using this way?

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

Sidebar

Related Questions

This question is being based off of a similar question titled, ASP.NET MVC Relative
I've created this ASP.Net application and need to record what the users have done
I have an Action method in an ASP.NET MVC Controller class that handles form
Scenario: I am using ASP.NET MVC 3 and C#. I have a lot of
For my website project I am using ASP.NET MVC Razor. Learning as I go.
i have an MVC 3 site using asp.net 4 in my views i have
Using VB.NET on this one, in ASP.NET Web Forms. I have a property that
this question can create a misunderstanding: I know I have to use CSS to
I have not been able to find any definitive answers to this question: Can
I have a feeling this is a stupid question but I can't find the

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.