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 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 report in our internal system that can return anywhere from 1
I have the following query, now the strange thing is if I run this
Variable scope in JS is confusing the hell out of me. In the following
In the multidimensional array below, I would like to merge arrays that have the
I want to select blocks of text within given string. These blocks of text
I'm building a basic forum where every post contains some text, first and last
peoples of web! Maybe one of you will spot what's amiss in the following
I'm creating a chat daemon in python and twisted framework. And I'm wondering if
The code below is the code i am using. It works fine in thunderbird

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.