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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T01:11:55+00:00 2026-06-09T01:11:55+00:00

net mvc 3 and trying to create a blog application. I want to have

  • 0

net mvc 3 and trying to create a blog application. I want to have a url which contains a urlheader such as:

Blog/Details/Third-post

However, I am getting a url which is this:

Blog/Details/3?urlHeader=Third-post

what am I doing wrong?

My blog controller is as follows:

public ViewResult Details(int id, string urlHeader)
{
    var blogs = blogrepository.GetBlog(id);
    var recentblogs = blogrepository.FindRecentBlogs(5);
    var archivelist = blogrepository.ArchiveList();
    BlogDetailsViewModels viewModel = new BlogDetailsViewModels { Blog = blogs, RecentBlogs = recentblogs, ArchiveList = archivelist };
    return View(viewModel);
}

and the route method is as follows:

 routes.MapRoute(
        "BlogDetail", // Route name
        "Blog/Details/{urlHeader}", // URL with parameters
        new { controller = "Blog", action = "Details" }, // Parameter defaults
        new { urlHeader = "" } // Parameter constraints
    );

and the link is as follows:

@Html.ActionLink(Model.Title , "Details", "Blog", new { id = Model.BlogID, urlHeader = Model.UrlHeader }, null)
  • 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-09T01:11:58+00:00Added an answer on June 9, 2026 at 1:11 am

    You could have the following routes:

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    
        routes.MapRoute(
            "Blog",
            "Blog/Details/{id}/{urlHeader}",
            new { controller = "Blog", action = "Details", urlHeader = UrlParameter.Optional },
            new { id = @"\d+" }
        );
    
        routes.MapRoute(
            "Default",
            "{controller}/{action}/{id}",
            new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create ASP.NET MVC Application with Entity Framework, which has One to
I'm trying to create a upload center application using Asp.Net MVC 4. I want
I am new to ASP.NET-MVC and I am trying to create a simple blog
I'm trying to create an authorization scheme for my ASP.NET MVC application where an
I'm new to ASP.NET MVC and I'm trying to create a very simple blog
I am trying to create an ASP.NET MVC application, using Spring.NET to inject dependencies.
I'm trying to create a page using ASP.NET MVC 2 which shows two things:
I'm trying to create a quick ASP.NET MVC 3 application using the RC version
I am trying to create a pluggable ASP.NET MVC framework. I have extensively used
I am learning ASP.NET MVC 3 and trying to create a web application where

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.