<%{
WebGrid studentGrid = new WebGrid(rowsPerPage: StudentController.PageSize);
studentGrid.Bind(Model.Students, autoSortAndPage: false, rowCount: Model.RowCount);
studentGrid.PageIndex = Model.CurrentPage;
}%>
<%=studentGrid.GetHtml(columns: new WebGridColumn[]{
studentGrid.Column("StudentId", "Id"),
studentGrid.Column("Name", "Name"),
})%>
不幸的是,我被迫在我的 MVC3 项目中使用 aspx 视图。
我希望有一列根据绑定到网格的列表项的某些条件显示文本“选择”或“删除”。
语法是如何做到这一点的
我必须像渲染 html
<span class="1" id=item.id>Select<span>
显示的 html 将只是Select