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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:50:22+00:00 2026-05-23T12:50:22+00:00

While working on an ASP.Net MVC 3 web app I found the need to

  • 0

While working on an ASP.Net MVC 3 web app I found the need to have a route like this….
http://mydomain.com/ParentPortal/Adult/Edit/4
Where Edit is the command and 4 is the ID for the adult.

I ended up with the following route…

routes.MapRoute("ParentPortal", "ParentPortal/{action}/{type}/{id}",
                New With {.controller = "ParentPortal", .action = "Index", .type = UrlParameter.Optional, .id = UrlParameter.Optional})

And the following action

<Authorize(Roles:="Parent")>
Public Function Adult(ByVal type As String, ByVal id As Integer?) As ActionResult
    Select Case type.ToLower
        Case "edit"
            Throw New NotImplementedException()
        Case "new"
            Throw New NotImplementedException()
        Case Else
            Throw New NotImplementedException()
    End Select

End Function

Would that be the recommended way of doing it?

  • 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-23T12:50:22+00:00Added an answer on May 23, 2026 at 12:50 pm

    Seconded for using MVC Areas. What you are doing now isn’t inline with the standard ASP.NET MVC design pattern and also relies on magic strings.

    Instead, create a new Area called ‘ParentPortal’. Add to it a controller called ‘Adult’ containing Edit and New actions. Finally, register the new Area with MVC. ie:

    1. Create ‘ParentPortal’ area by
      right clicking on web project and
      choosing Add->Area..

    2. Add ‘AdultController’ controller
      to the area by right clicking on the
      area and choosing Add->Controller

    3. Set authorization and add edit/new methods

      [Authorize(Roles="Parent")]
      public class Adult : Controller{
          public ActionResult Edit(int id){
             ..stuff..
             return View(model);
          }
      
          public ActionResult New(int id){
             ..stuff..
             return View(model);
          }
      }
      

    4) Verify that Application_Start in your Global.asax contains:

    AreaRegistration.RegisterAllAreas();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I implement background processing queues in my ASP.NET MVC web app? While
While working on ASP.NET MVC 2 web site I faced to the following problem.
I have been working on ASP.NET MVC for a while and loving it so
I am working on a ASP.NET MVC web site that has multiple submit buttons.
I have a working copy of asp.net mvc site locally. I just uploaded the
While working with ASP.NET using Visual Studio (2008) I have discomfort issue: source code
I am working on a web app in ASP.NET/C# which needs to be scalable
I'm working with a web application I built in ASP.NET MVC. It is deployed
I have a main website app written in ASP.NET's MVC 3. Now, what I
Currently, I have a ASP.net 3.5 web application for which I currently am working

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.