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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:47:09+00:00 2026-05-26T18:47:09+00:00

I am working with razor view engine in asp.net mvc3. Now, I need an

  • 0

I am working with razor view engine in asp.net mvc3.

Now, I need an input for a DateTime which should display the value in a fixed format (say dd-MMM-yyyy). So I can do:

[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd-MMM-yyyy}")]
public DateTime StartDate { get; set; }

And in the view:

@Html.EditorFor(model => model.StartDate)

But I need to add a class in the input. Which I think is not possible in EditorFor.
So I could use

@Html.TextBoxFor(model => model.StartDate, new { @class = "Date" })

But the display format does not work in this case.

Model can be null. So,

@Html.TextBox("StartDate", string.Format("{0:dd-MMM-yyyy}", Model.StartDate))

will throw NullReferenceException.

  • 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-26T18:47:10+00:00Added an answer on May 26, 2026 at 6:47 pm

    ophelia’s way is a quicker version of mine. But this way is useful if you’re going to have a few date fields in your application. So this is the way i like to do it:

    -> In your solution explorer, create a folder inside Shared called “EditorTemplates“

    -> In there, add a new (not strongly typed) Partial View. Call it “DateTime“.

    -> Open this view, and remove any code in there, and throw the following code in there:

    @model System.DateTime
        @Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue, new { @class = "date" /* + any other html attributes you want */ })
    

    -> In your ViewModel, your date field should be like this:

    [Display(Name = "My Date:"), DisplayFormat(DataFormatString = "{0:dd-MMM-yyyy}", ApplyFormatInEditMode = true)]
    public DateTime MyDate { get; set; }
    

    -> In your main view, and any view you want to use a date field, you can just use EditorFor on the property, like so:

    @Html.EditorFor(m => m.MyDate)
    

    You can initialize the date field in your controller or set a default date in your viewmodel’s constructor.

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

Sidebar

Related Questions

I am working on a project which adopted ASP.NET MVC3(Razor) tech. Now, I have
Alright guys, Need some help! Im working with asp.net mvc3 razor (and am fairly
I've a following asp.net mvc razor view code which doesn't seem to be working:
I am working on ASP.net MVC 3.0 Razor View Engine Application. I have a
I am working on asp.net MVC 3 application. I have created a Razor view
i am working in asp.net mvc 3 web application which uses razor code. and
VS2010 Ultimate, ASP.NET MVC 3 w/Razor. I've created a custom view engine in my
I am working in ASP.NET MVC 3 application, I am using razor view. I
I'm working on an MVC3 web application using the razor view engine. I'm looking
The DataAnnotations validator not working in asp.net mvc 4 razor view, when using the

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.