簡單問:如何獲得文本框以顯示值。下面的代碼失敗在item.LastNamewebgrid中的Mvc 3 texbox(剃鬚刀)
@model List<Mvc2010_11_12.Models.Employee>
@{
var grid = new WebGrid(source: Model,defaultSort: "FirstName",rowsPerPage: 3);
}
<div id="grid1">
@grid.GetHtml(columns: grid.Columns(
grid.Column("LastName"),
grid.Column(format: (item) => Html.TextBox("LastName", item.LastName))
))
</div>
不,那是我與打碼。我只是嘗試在網格中插入一個TextBox並填充模型中的值。我有意識地錯過了一些東西。 – user408698 2010-11-16 23:33:02
好的,對不起。 – Chaddeus 2010-11-17 00:27:55