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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:32:21+00:00 2026-06-11T07:32:21+00:00

I have an ASP.NET MVC4 Application. I use ninject for DI and WebActivator to

  • 0

I have an ASP.NET MVC4 Application. I use ninject for DI and WebActivator to setup the environment.

Inside the Start method, System.Globalization.CultureInfo.CurrentCulture reads correctly from the web.config as “es-DO” which is the declared locale:

 public static void Start() 
    {
        DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
        DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
        Bootstrapper.Initialize(CreateKernel);

    }

Inside the PostStart method where I set routes and minification bundles the locale changes to “en-US”. Which I assume is the default locale

 public static void PostStart()
    {
        ValidationSettings.UnobtrusiveValidationMode = UnobtrusiveValidationMode.None;

        RouteConfig.RegisterRoutes();
        GlobalFilterConfig.RegisterFilters();
        BundleConfig.RegisterBundles(BundleTable.Bundles);
        AuthConfig.RegisterAuth();
    }

Does anyone know why this happens? the BundleConfig.RegisterBundles method relies on the Culture information to load the corresponding javascript files.

  • 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-11T07:32:23+00:00Added an answer on June 11, 2026 at 7:32 am

    We fixed it like this:

    //Hack to set the culture again to the one defined on the web.config
            var config = WebConfigurationManager.OpenWebConfiguration("/");
            var section = (GlobalizationSection)config.GetSection("system.web/globalization");
            if(section != null)
            {
                Thread.CurrentThread.CurrentCulture = new CultureInfo(section.Culture);
                Thread.CurrentThread.CurrentUICulture = new CultureInfo(section.UICulture);
            }       
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been writing an application using ASP.Net MVC4, where the majority of the
I have asp.net mvc 2 application. Now I'm reimplementing it for working with Ninject
Environment In my solution I have three projects, they are: Web (Asp.net MVC4) Model
I have an ASP.NET MVC 4 application that needs to use an existing API
Hello everybody i have asp.net mvc4 application where i made countdown something like this:
I have created a Single Page Application (ASP.NET MVC4) using Steven Sanderson's instructions .
I have Ninject working nicely in an ASP.NET MVC3 web application. I'd like to
I have asp.net mvc 4 web application project on my server in IIS Directory.
I have a layered web application that I built with ASP.NET MVC 4, WebAPI
I have an ASP.NET MVC4 site with mobile content. When I deploy this on

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.