Thursday, March 21, 2013

How to Check checkbox and Radio button when click Names


How to Check checkbox and Radio button when click Names




How to check checkbox when click names:

<input type="checkbox" value='flight' name="chkCommon" id="ChkFlight" />
<label for="ChkFlight">Flight</label>

How to check Radiobutton when click names:

<span class="chk-box-round">
@Html.RadioButton("TripType", "ROUND", new { id = "round_trip", @checked = true})
<label for="round_trip">Round Trip</label>
</span>

No comments:

Post a Comment