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 Post. In Post Model class I have created property PostedOn. Following is a code for that.
private DateTime mPostedOn = DateTime.Now;
public DateTime PostedOn
{
get
{
return mPostedOn;
}
set
{
mPostedOn = value;
}
}
@Html.EditorFor(model=> model. mPostedOn)
Post your comments / questions
Recent Article
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
- Python generate QR code image
- Insert excel file data into MySQL database in Python
- ImportError: Missing optional dependency 'xlrd' | How tot Convert xls to xlsx | Python
Related Article