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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:00:26+00:00 2026-05-19T13:00:26+00:00

I would like my MVC application to check (on every request) if the current

  • 0

I would like my MVC application to check (on every request) if the current user has a profile. If no profile is found, I want to redirect them to the “profile” page for them to submit one.

    protected void Application_AuthenticateRequest()
    {
        if (HttpContext.Current.User != null)
        {
            // Redirect to profile page if the current user does not have a profile
            if (!HttpContext.Current.User.HasProfile())
                Response.RedirectToRoute("Profile");
        }
    }

I have extended the IPrincipal to include a method “User.HasProfile()” to check if the user has a profile. It works, but the problem is the that Application_AuthenticateRequest gets called for every single request, including javascript, css etc…

Moreover, it creates a redirect loop when I try to do Response.RedirectToRoute(“Profile”).

The only way I have found around this is to add the following to my IF statement before redirecting to the profile page:

!HttpContext.Current.User.HasProfile() && Request.Path != "/system/profile" && !Request.Path.Contains(".")

It checks if the current path is not the profile page (to prevent the redirect loop) and if there is a period in the URL (to allow javascript and css resources to continue to load). Is there a better way? How do you guys handle this?

  • 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-19T13:00:26+00:00Added an answer on May 19, 2026 at 1:00 pm

    I’m not sure if this will work for every single case, but I found that you can interrogate the Handler property of the current context, and it’s null for static resources.

    void LogRequestInfo(object sender, EventArgs e)
    {
    
            HttpApplication app = (HttpApplication)sender;
            HttpContext ctx = app.Context;
    
            // We don't want to spend resources logging static file requests.  This code was added when we moved
            // to Integrated mode in IIS.
            if (ctx.Handler == null)
                return;
    
    // More code below here...
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to add graphing to my User Controls in ASP.NET MVC. I
I would like to use DataAnnotations in my ASP.NET MVC application. I have strongly
In an asp.net mvc application, I would like to be able to generate views,
I would like to cache my most database heavy actions in my asp.net-mvc site.
Starting a new project and would like to use one of the MVC framworks.
I'm using ASP.NET MVC Preview 4 and would like to know how to use
How would I handle something like the below uri using ASP.NET MVC's routing capability:
We're currently rewriting our organizations ASP.NET MVC application which has been written twice already.
I am currently working on an ASP.NET MVC2 application and would just like to
I have a decent working web application (Java/Servlet/Jsp) that I would like to improve

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.