html5 - How can I design the following code in table format? -


<div class="col-md-4">  	<li><input type="checkbox" id="selecctall" /> selecct all</li>  	@html.checkboxlistfor(model => model.hotelids.custcodes,  		model => model.hotels,  		a => a.custcode,  		a => a.custname,  		model => model.selected, => new { @class = "checkbox1" })  </div>

this checkboxlistfor show hotel name , and checkbox,but not coming in proper way.how can this


Comments