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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:43:04+00:00 2026-05-25T14:43:04+00:00

I defined two action links in my view like below: @Html.ActionLink(Baxter, SearchAffaires, new {

  • 0

I defined two action links in my view like below:

@Html.ActionLink("Baxter", "SearchAffaires", new { LabelName = "Baxter" })
@Html.ActionLink("Favorite", "SearchAffaires", new { OnlyFavorite = true })

I defined the two routes below:

        routes.MapRoute(
        "Search Affaire Only Label", // Route name
        "{controller}/Label/{LabelName}", // URL with parameters
        new { controller = "Affaire", action = "SearchAffaires" } // Parameter defaults
        );

        routes.MapRoute(
        "Search Affaire Only Favorite", // Route name
        "{controller}/Favorite", // URL with parameters
        new { controller = "Affaire", action = "SearchAffaires", OnlyFavorite = true } // Parameter defaults
        );

If I start my solution and point to my ‘favorite’ link, I get the following url:

http://localhost:3817/Affaire/Favorite

That’s ok for me. Now, I restart my solution (important) and I point to a ‘label’ link (for this example, my label is Baxter), I get the following url:

http://localhost:3817/Affaire/Label/Baxter

That’s ok for me. Now I didn’t restart my solution and I point to my ‘favorite’ link, I get the following url:

http://localhost:3817/Affaire/Label/Baxter?OnlyFavorite=True

As you can see, the parameter named OnlyFavorite is passed again but I didn’t expect that!

What can I do to avoid this behavour?

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. Editorial Team
    Editorial Team
    2026-05-25T14:43:05+00:00Added an answer on May 25, 2026 at 2:43 pm

    The problem is at the time you add the link MVC has no way of knowing which route you want to use, as it has all the parameters from the current request, LabelName is set, so it matches on the Search Affaire Only Label route.

    Here’s a fix. likewise you could alternatively add a constraint that LabelName can’t be empty, so it matches on the second route:

    routes.MapRoute(
        "Search Affaire Only Label",
        "{controller}/Label/{LabelName}",
        new { controller = "Affaire", action = "SearchAffaires" }
        );
    
    routes.MapRoute(
        "Search Affaire Only Favorite",
        "{controller}/Favorite",
        new
        {
            controller = "Affaire",
            action = "SearchAffaires",
            LabelName = string.Empty,
            OnlyFavorite = true
        }
    );
    
    @Html.ActionLink("Baxter", "SearchAffaires", 
                     new { LabelName = "Baxter" })
    @Html.ActionLink("Favorite", "SearchAffaires", 
                     new { LabelName = string.Empty, OnlyFavorite = true })
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i defined two routes in global.asax like below context.MapRoute(HomeRedirect, , new { controller =
I want clean URLs and have defined two routes: routes.MapRoute( Search, Search, new {
I have defined two endpoints in my App.Config file as <system.serviceModel> <services> <service name=HostDirectAddress.ITestService
I'm using silverlight and I defined two styles for the page: ExpanderBottomRightButtonStyle ExpanderScaleStyle Now
An IP Subnet is defined with two parts, a network and a prefix-length or
I have a class with two methods defined in it. public class Routines {
Preface: I have two entities defined as a one-to-many relationship: A <<-------> B. B's
Assuming you have two lists defined in an xml schema, call them A and
I'm having some problems displaying the contents of one NSArrayController in two windows defined
I have two NSMutableString objects defined in my viewController's (a subclass of UITableViewController) .h

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.