- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- dotNet-ASP.NET MVC/Razor/TextBoxForにデフォルト値を設定する へ行く。
- 1 (2014-02-22 (土) 20:29:42)
Razor - TextBoxForにデフォルト値を設定する
Controller
public ActionResult Index() { //here you must set VALUE what u want, //for example I set current date Viewbag.ExactlyWhatYouNeed = DateTime.Now return View(); }
View
@Html.TextBoxFor(model => model.CurrentDate, new { @Value = ViewBag.ExactlyWhatYouNeed})
参考
http://stackoverflow.com/questions/16625460/how-to-set-default-value-html-textboxfor