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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:18:36+00:00 2026-06-12T20:18:36+00:00

I have html as @Html.EditorFor(model => model.DateOfBirth}) and property as [DataType(DataType.Date, ErrorMessage = Invaild

  • 0

I have html as

@Html.EditorFor(model => model.DateOfBirth})

and property as

    [DataType(DataType.Date, ErrorMessage = "Invaild date.")]
    [Display(Name = "Date of birth")]
    public DateTime DateOfBirth { get; set; }

controller code is as

 public ActionResult Edit(int id)
    {
        var member = (MembersViewModel)_db.Members.Single(f => f.Id == id);

        return View(member);
    }

Model Is as

 public class MembersViewModel
{
    public int Id { get; set; }
    public int GymId { get; set; }
    public Gym Gym { get; set; }
    public ICollection<Gym> Gyms { get; set; }
    public string FirstName { get; set; }
    public string MiddleName { get; set; }
    public string LastName { get; set; }
    public Address ShippingAddress { get; set; }
    public Address BillingAddress { get; set; }
    public string PhoneNumber { get; set; }
    public string EmailAddress { get; set; }
    [DataType(DataType.Date, ErrorMessage = "Invaild date.")]
    [Display(Name = "Date of birth")]
    public DateTime DateOfBirth { get; set; }

    public static implicit operator MembersViewModel(Member member)
    {
        return new MembersViewModel
        {
            BillingAddress = member.BillingAddress,
            FirstName = member.FirstName,
            Gyms = member.Gyms,
            Id = member.Id,
            LastName = member.LastName,
            MiddleName = member.MiddleName,
            ShippingAddress = member.ShippingAddress,
            DateOfBirth = member.DateOfBirth

        };

    }

    public static explicit operator Member(MembersViewModel member)
    {
        return new Member
        {
            BillingAddress = member.BillingAddress,
            FirstName = member.FirstName,
            Gyms = member.Gyms,
            Id = member.Id,
            LastName = member.LastName,
            MiddleName = member.MiddleName,
            ShippingAddress = member.ShippingAddress,
            DateOfBirth = member.DateOfBirth

        };

    }
}

It will allow me to select date from calender. And yes also save it in a database. But when I want to populate the saved date, then text box remains empty. I don’t know why, even I get saved date and also pass to my model. Does anyone have any idea?

  • 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-12T20:18:37+00:00Added an answer on June 12, 2026 at 8:18 pm

    Yes I have solve this, not sure is it right or wrong but Work for me

     @Html.EditorFor(model => model.DateOfBirth)
     @Html.ValidationMessageFor(model => model.DateOfBirth)
    
     @Html.Hidden("hiddenFieldDateofBirth", Model.DateOfBirth.ToString("yyyy-MM-dd"))
    
     <script>
        $("#DateOfBirth").val($("#hiddenFieldDateofBirth").val());
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have : @Html.EditorFor(model => model.name) This display my user name but I want
I have a model class, with a property like this: [Display(Name = Phone, Description=Hello
i have a DateTime Field that must be shown in Edit view @Html.EditorFor( model
<%: Html.EditorFor(model => model.date)%> How can I make this code display an empty textbox
Here's my model's property: [Required(ErrorMessage = Debe escribir su fecha de nacimiento)] [Display(Name =
On my MVC3 razor page I have a date field @Html.EditorFor(model => model.Member.Dob) Given
I have datetime input in my ASP.NET MVC3 app: <div class=editor-field> @Html.EditorFor(model => model.Article.PublishedDate)
I am getting some unexpected behavior from Html.EditorFor(). I have this controller: [HandleError] public
I have an html helper that I'd like to set a default on. @Html.EditorFor(model
In my model I have: [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = {0:dd/MM/yyyy})] public DateTime StartDate

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.