DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Reduce Frontend Complexity in ASP.NET Razor Pages Using HTMX
  • GDPR Compliance With .NET: Securing Data the Right Way
  • How to Enhance the Performance of .NET Core Applications for Large Responses
  • Zero to AI Hero, Part 3: Unleashing the Power of Agents in Semantic Kernel

Trending

  • Give Your AI Assistant Long-Term Memory With perag
  • Managing, Updating, and Organizing Agent Skills
  • A Spring Boot App With Half the Startup Time
  • How to Submit a Post to DZone
  1. DZone
  2. Coding
  3. Frameworks
  4. Setting Default Value for @Html.EditorFor in ASP.NET MVC

Setting Default Value for @Html.EditorFor in ASP.NET MVC

In this blog post I am going to Explain How we create Default values for model Entities.

By 
Jalpesh Vadgama user avatar
Jalpesh Vadgama
·
Aug. 21, 11 · Tutorial
Likes (0)
Comment
Save
Tweet
Share
72.8K Views

Join the DZone community and get the full member experience.

Join For Free

Yesterday one of my friend asked me to set default value for @HTML.EditorFor. So I decided to write this blog post. In this blog post I am going to Explain How we create Default values for model Entities. So Let’s start this via taking a simple example Model class called User. In User Model class I have created two properties UserName and UserJoinedDate. Following is a code for that.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace CodeSimplified.Models
{
 public class User
  {
      private DateTime _userJoinDate = DateTime.Now;

      public DateTime UserJoinDate
      {
        get
          {
              return _userJoinDate;
          }
          set
          {
              _userJoinDate = value;
          }
      }

      public string UserName
      { get; set; }
  }
}

As you can see in above class username is default property while for UserJoinedDate I have used old method of declaring properties. Where I have assigned a private variable with System DateTime.

Now let’s Create a Action Result User in Home Controller like following where I am returning a new User View like following.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace CodeSimplified.Controllers
{
  public class HomeController : Controller
  {
      public ActionResult Index()
      {
          ViewBag.Message = "Welcome to ASP.NET MVC!";

          return View();
      }

      public ActionResult About()
      {
          return View();
      }

      public ActionResult User()
      { return View(new CodeSimplified.Models.User()); }
  }
}

Now Let’s Create User View from the action right click Add view like following. Here I have created Strongly Typed view like following.

User

Once you click Add It will add a new View like following.

@model CodeSimplified.Models.User

@{
  ViewBag.Title = "User";
}

<h2>User</h2>

<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

@using (Html.BeginForm()) {
  @Html.ValidationSummary(true)
  <fieldset>
      <legend>User</legend>

      <div class="editor-label">
          @Html.LabelFor(model => model.UserJoinDate)
      </div>
      <div class="editor-field">
          @Html.EditorFor(model => model.UserJoinDate)
          @Html.ValidationMessageFor(model => model.UserJoinDate)
      </div>

      <div class="editor-label">
          @Html.LabelFor(model => model.UserName)
      </div>
      <div class="editor-field">
          @Html.te
          @Html.EditorFor(model => model.UserName)
          @Html.ValidationMessageFor(model => model.UserName)
      </div>

      <p>
          <input type="submit" value="Create" />
      </p>
  </fieldset>
}

<div>
  @Html.ActionLink("Back to List", "Index")
</div>

Now everything is ready so Let's run that in browser. Following is the output as expected.

Browser

So that’s it. It’s very easy. Hope you liked it. Stay tuned for more.. Till then happy programming.

 

ASP.NET MVC ASP.NET

Published at DZone with permission of Jalpesh Vadgama. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Reduce Frontend Complexity in ASP.NET Razor Pages Using HTMX
  • GDPR Compliance With .NET: Securing Data the Right Way
  • How to Enhance the Performance of .NET Core Applications for Large Responses
  • Zero to AI Hero, Part 3: Unleashing the Power of Agents in Semantic Kernel

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook