これに相当する VB を教えてください。
@model DateTime
Using Date Template
@Html.TextBox("", String.Format("{0:d}", Model.ToShortDateString()),
new { @class = "datefield", type = "date" })
私は試した:
@model DateTime
日付テンプレートの使用
@Html.TextBox("", String.Format("{0:d}", Model.ToShortDateString()), New With {Key .class = "datefield", Key .type = "date"})
...しかし、次のエラーが発生しました: NullReferenceException was unhandled by user code Object variable or With block variable not set.
チュートリアルからのものです: ASP.NET MVC で HTML5 と jQuery UI の Datepicker ポップアップ カレンダーを使用する - パート 4