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

  • Home
  • SEARCH
  • 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 7044691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:26:23+00:00 2026-05-28T02:26:23+00:00

I have a ASP.NET MVC site that uses forms authentication with custom AuthorizeAttribute on

  • 0

I have a ASP.NET MVC site that uses forms authentication with custom AuthorizeAttribute on both actions and controller classes.

I have this in my web.config file :

<authentication mode="Forms">
  <forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>

When the site is in “normal” mode this works fine. The users that needs to login is redirected to this page.

But when I switch to Test mode then all Contollers will be locked and also the AccountController.

I now need to shange the loginUrl when I’m in Test mode to point at a controller action that is not locked and that is special made for the test scenario.

How can I change the loginUrl or is it possible to redirect from the AuthorizeAttribute?

  • 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-28T02:26:24+00:00Added an answer on May 28, 2026 at 2:26 am

    What we do is override with a customised Authorize attribute which redirects for the HandleUnauthorizedRequest function like so:

    public class AuthorizeAttribute : System.Web.Mvc.AuthorizeAttribute
        {
    
            public string LoginController { get; set; }
            public string LoginAction { get; set; }
    
    
            protected override void HandleUnauthorizedRequest(AuthorizationContext filterContext)
            {
                if (string.IsNullOrEmpty(LoginController)&&string.IsNullOrEmpty(LoginAction))
                    base.HandleUnauthorizedRequest(filterContext);
                        filterContext.Result =new RedirectToRouteResult(
                                                new RouteValueDictionary(new
                                                                             {
                                                                                 controller = LoginController, 
                                                                                 action = LoginAction, 
                                                                                 returnUrl = HttpContext.Current.Request.Url
                                                                             }));
            }
        }
    

    This way we can specify the login route for any authorize attribute by assigning the controller and action to go for. Otherwise it behaves like the standard authorize attribute.

    You could change this to redirect according to being in test mode or live mode.

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

Sidebar

Related Questions

I have an existing asp.net mvc website that uses basic forms authentication. The site
I have an ASP.NET MVC site that uses both Microsoft Ajax [ Ajax.BeginForm() ]
I have a ASP.NET MVC site that is locked down using Forms Authentication. The
I have an ASP.NET MVC web site. I have many actions which require authentication
I have an ASP.NET MVC site, that uses a CommandService. This command service is
I am writing a Asp.net MVC 2 application that uses Forms Authentication and currently
I have a small site I developed for a friend that uses ASP.Net MVC
I have a asp.net mvc site that references a couple of libraries. Recently I
I have an ASP.NET MVC site and ELMAH is showing me that my site
I have simple jQuery Mobile site created using asp.net mvc 2 and uses basic

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.