<input name="Release" id="rdate" type="text" class="input datepicker" value="@entry.Release"/>
我想在文本框中仅显示该值。虽然@ entry.Release包含来自数据库的日期,但它应该在文本框中显示为默认日期。它在我的文本框中显示当前日期,但是我要表明它属于@ entry。请在我上面的代码中声明。 @ entry。包含来自数据库的日期,它应该在文本框中显示为默认日期
答案 0 :(得分:1)
您确定@entry.Release
不为空吗?
尝试更改
value=@entry.Release
到
value=@Model.Release.ToString()