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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:26:30+00:00 2026-05-15T10:26:30+00:00

I am building my first .NET MVC web application and loving the simplicity and

  • 0

I am building my first .NET MVC web application and loving the simplicity and flexibility. I have however come to my first stumbling block.

I have a list of items and if you are not logged in you will see a preview link I would like the link to direct to something like below:

/preview/unique-slug

The view should then allow me to display the contents from the database (essentially a details page)

I am not sure how to approach this nor what I should be Google’ing as the results I got were poor.

Any pointers please?

  • 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-15T10:26:30+00:00Added an answer on May 15, 2026 at 10:26 am

    This is the way I’ve done this in the past:

    You need to store in the database a column with the slug that each item is referred to by. Then, create a route like the following:

    routes.MapRoute("PreviewLink",
        "/preview/{slug}",
        new { controller = "Preview", action = "Details" }
    );
    

    So this will call the Details method on the PreviewController like so:

    class PreviewController : Controller
    {
        public ActionResult Details(string slug)
        {
            var model = db.GetItemBySlug(slug);
            return View("Details", model);
        }
    }
    

    Basically, you’ll get the slug as a string in your action method, query the database for the item with the corresponding slug, and display it. Essentially, we just replace an integer id with a string slug.

    Hopefully that clears things up for you!

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

Sidebar

Related Questions

I'm in the process of building my first web application using ASP.NET MVC 2
I'm building a web app using EF Code First and ASP.NET MVC. I have
I'm building my first ASP.NET MVC application and I am having some troubles with
I am building my first ASP.Net MVC based app and have a problem accessing
I am building an ASP.NET MVC web application using entity framework DbContext using the
I am building my first ASP.net MVC application (not my first jQuery & jQuery
MVC 3 razor VB.NET project. I have resorted to manual building a list for
I'm a web developer building my first production grade console application (C# .NET 4.0).
I'm building an application which (currently) consists of one web application (ASP.NET MVC) and
I am building an ASP.NET MVC application using the 1.0 release using Visual Web

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.