我想在 webgrid 中创建一个复选框选项,其值为 int
下面我是怎么做的...
grid.Column("",header:"Select",format:(item)=>Html.CheckBox(String.Format("{0}",(int)item.ID),false,new{id="chkSelected", Style="width:60px"})),
它对我来说工作正常,但我想使用类似下面的东西
grid.Column(header: "{CheckBoxHeading}", format:
@<text><input class="box" type="checkbox" /></text>)
注意:我在剃须刀上使用 aspx 引擎
请帮助我..我如何使用 aspx 引擎实现上述语法
谢谢阿曼
_