i want to create a checkbox option inside webgrid with value as int
below how i have done...
grid.Column("",header:"Select",format:(item)=>Html.CheckBox(String.Format("{0}",(int)item.ID),false,new{id="chkSelected", Style="width:60px"})),
it is working fine for me, but i wanted to use something like below
grid.Column(header: "{CheckBoxHeading}", format:
@<text><input class="box" type="checkbox" /></text>)
note: i am using aspx engine instead on razor
kindly help me..how do i achieve the above syntax with aspx engine
thanks
Aman