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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T02:04:55+00:00 2026-05-15T02:04:55+00:00

I have a Date variable in client side and I want to pass the

  • 0

I have a Date variable in client side and I want to pass the Date variable to my controller at server side.
I have passed as a normal field and the date is defaulting to 01-01-0001 12:00:00 AM.

help me to convert the date field with the right format.

  • 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-15T02:04:55+00:00Added an answer on May 15, 2026 at 2:04 am

    ASP.NET MVC expects the DateTime value to be in the format of Thread.CurrentLanguage. Please check what language you are using.

    Its like that because users might enter a Date in a TextBox and the they would enter the format of their language.

    Like Pieter said: an easy way is to use a string in this case.

    Another way is to use

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
    }
    

    in Global.Asax.

    You can switch back to the language of the user in a filter after the ModelBinding happend:

        public override void OnActionExecuting(ActionExecutingContext filterContext)
         {
                 string language = //find a way to get the language - I have it in the route
                 Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture(language);
                 Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(language);
             base.OnActionExecuting(filterContext)
         }
    

    This way has some risks, but I find it easier in lots of situations if modelBinding uses InvariantCulture (think of decimal values in the route, datetime in the route…)

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

Sidebar

Related Questions

I have a date variable like 10-25-1998 and I only want to echo 10.
I have a date variable as 24-dec-08 . I want only the 08 component
i have a table in whitch each row have a date variable. i want
In my PHP code I have a date in my variable $postedDate. Now I
I have a variable called $effectiveDate containing the date 2012-03-26 . I am trying
I have a variable in my Sinatra application: get '/' do @agenda_date = Date.today
I have date 2012-04-02 10:01:00 am I want to show this date in with
I have date in sting object in following format. dd/mm/yyyy I want to change
I have a Date format: 2009-08-10T16:03:03Z that I want to convert to: @MMM dd,
I have a date variable with the format 2008 12 29 to have it

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.