我是一名专业知识分子,所以如果遇到愚蠢的问题,请原谅我的问题,我在以下网址创建了一个小型 Web 应用程序https://wireme.co.uk/BookList但我无法正确显示日期,不知道是什么我做错了,请参阅下面的代码:
using Microsoft.VisualBasic;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace BookListRazor.Model
{
public class Book
{
[Key]
public int PO { get; set; }
[Required]
public string Creator { get; set; }
[Required]
public string Company { get; set; }
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy")]
public DateTime Date { get { return Mydate; } set { Mydate = value; } }
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy")]
public DateTime Mydate = DateAndTime.Now;
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy")]
public DateTime MyDate { get; set; }
}
}