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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:56:25+00:00 2026-06-09T05:56:25+00:00

I just barely created a new Area to organize my code. But currently I

  • 0

I just barely created a new Area to organize my code.
But currently I am having trouble actually linking it from my “base” or “root” index page, to my new area page.

@Html.ActionLink("Tube Record Form", "BearingAssemblyForm", "_HiCT", new { area = "HICT" }, null)

 public class HICTAreaRegistration : AreaRegistration
{
    public override string AreaName
    {
        get
        {
            return "HICT";
        }
    }

    public override void RegisterArea(AreaRegistrationContext context)
    {
        context.MapRoute(
            "HICT_default",
            "HICT/{controller}/{action}/{id}",
            new {controller = "_HiCT", action = "BearingAssemblyForm", id = UrlParameter.Optional }
        );
    }
}

The resource cannot be found.
And it seems its linked wrongly

Requested URL: /HICT/HiCT/BearingAssemblyForm

Controller: HiCT,
View/Action: BearingAssemblyForm, Area: HICT.

How would I like this?

Thank you so much.

  • 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-09T05:56:27+00:00Added an answer on June 9, 2026 at 5:56 am

    Try this:

    @Html.ActionLink("LinkText",
            "ActionName",
            "ControllerName",
            new { area = "HICT" }, null)
    

    I think you’re not using the correct @Html.ActionLink method overload.

    First off all, see if your area is registered correctly:

    public class Routes : AreaRegistration
    {
        public override string AreaName
        {
            get
            {
                return "HICT";
            }
        }
    
        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "HICT_default",
                "HICT/{controller}/{action}/{id}",
                new { controller = "_HiCT", action = "BearingAssemblyForm", id = UrlParameter.Optional }
        );
    }
    

    Make sure you’re calling RegisterAllAreas inside the Global.asax.cs file:

    protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();
    
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry this is a basic question, but all my research just barely missed answering
I have barely created a script (as I'm just a beginner in ajax), in
I just downloaded the source code of facebook's scribe. I'm new to it and
I'm relatively new to both C and bitwise operations and I'm having trouble with
Just checking my JS and I have an error, but I cannot see where.
just wanted to ask where I define initial class properties? From other languages I
just wondering if there is a way to reduce the amount of code needed
Just see this: SELECT clientid,clientname,startdate,enddate,age FROM clients WHERE clientid IN (1,2,3,4,5) AND CASE WHEN
This is barely even a question, I'd just like someone to confirm this for
I'm just barely after 2 hours of trying to force it to work and

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.