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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:27:57+00:00 2026-06-11T17:27:57+00:00

We are creating a MVC4 document retrieval site where some documents require authentication, while

  • 0

We are creating a MVC4 document retrieval site where some documents require authentication, while other documents allow anonymous access.

The URL includes a folder id that is used to retrieve a list of documents. Sometimes none of the documents require authentication, sometimes all the documents do, and sometimes it is a mix.

How would I approach this? Thanks in advance.

  • 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-11T17:27:59+00:00Added an answer on June 11, 2026 at 5:27 pm

    I would add a bool RequiresAuthentication item to your database table that contains the documents. This would be false if the document is free (no auth needed) and true if not.

    Then you could do something like this in the controller that serves the documents.

    public Details(int Id)
    {
        Document doc = databaseContext.Document.Find(Id);
        if(doc.RequiresAuthentication)
        {
            if(User.Identity.IsAuthenticated)
            {
                return View(doc);
            }
            // If the user is not authenticated, redirect them to log on
            return RedirectToAction("LogOn", "Account");
        }
        else
        {
            return View(doc);
        }
    }
    

    You could even pass a returnUrl to the log on so once the user logs on they are redirected back to the document they wanted.

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

Sidebar

Related Questions

I am creating a MVC4 application and I have got some troubles when I
I am creating a web api using asp.net mvc4 and the response output is
With MVC4 already out in beta, what are the risk factors creating a rather
Creating a birthday club. The database consists of clients and their pets. Some clients
creating 20 viewcontrollers and calling them one after the other from the mainviewcontroller as
Creating a Certificate authority signing request (Keychain Access, Certificate Assistant: Request Certificate from Certificate
Creating a ruby on rails site and recently added: <% if (?can :manage, :table)
Creating a mini-database with access, i came across this problem: For the background, i
using System.Web.Security; I'm creating a resetPassword form in MVC4: using System.Web.Security; [HttpPost] [AllowAnonymous] public
In my initial stab at creating a MVC4 Web API. I've noticed a few

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.