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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:36:23+00:00 2026-05-27T03:36:23+00:00

In globa.asax.cs i use this code for cultre protected void Application_BeginRequest(object sender, EventArgs e)

  • 0

In globa.asax.cs i use this code for cultre

protected void Application_BeginRequest(object sender, EventArgs e)
{
    CultureInfo newCulture = new CultureInfo("sl-SI");
    Thread.CurrentThread.CurrentCulture = newCulture;
    Thread.CurrentThread.CurrentUICulture = newCulture;
}

but when i write

@DateTime.Today.DayOfWeek i always get

“Sunday”

instead of our language

“Nedelja”

. I am using mvc3. how can i get our date and day names?

  • 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-27T03:36:23+00:00Added an answer on May 27, 2026 at 3:36 am

    DayOfWeek is an enum, and the enum’s ToString value will always simply give you the name of the value. You need something like:

    string day = newCulture.DateTimeFormat.DayNames[(int) DateTime.Today.DayOfWeek];
    

    EDIT: To make this simpler from your view, you might want a new extension method:

    public static class DayOfWeekExtensions
    {
        public static string ToCurrentCultureString(this DayOfWeek dayOfWeek)
        {
            // Or CurrentUICulture... I can never remember which way round they are.
            var formatInfo = CultureInfo.CurrentCulture.DateTimeFormat;
    
            return formatInfo.DayNames[(int) dayOfWeek];
        }
    }
    

    Then in your view:

    @DateTime.Today.DayOfWeek.ToCurrentCultureString()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

my route implementation on Global.asax protected void Application_Start(object sender, EventArgs e) { this.intRoutes(RouteTable.Routes); }
Hi I have this piece of code in global.asax public void Application_PreRequestHandlerExecute(object sender, EventArgs
I am trying to initialize the EFUnitOfWorkFactory object context. In global.asax: void Application_Start(object sender,
I have an HttpApplication (Global.asax) in my web application, I use this to catch
How can I use the PostAuthenticateRequest event of Global.asax? I'm following this tutorial and
Let's collect some tips for evaluating the appropriate use of global.asax.
In an ASP.NET (2.0) application I use FormsAuthentication. In the Global.asax / Application_AuthenticateRequest method
my global.asax looks like this Imports Castle.Windsor Imports Castle.Windsor.Configuration.Interpreters Public Class MvcApplication Inherits System.Web.HttpApplication
I have code in global.asax that sets some things in cache with CacheItemRemovedCallback. When
I have the following in my Global.asax.cs routes.MapRoute( Arrival, {partnerID}, new { controller =

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.