Hello friends..
i have a field set
<FieldSet>
<legnd>Studnetinfo</legend>
<intpu type="checkbox">
and here I am having StudnetId,FristName,lastname textboxes
</Fieldset>
$('#btnAll').click(function() {
$('#Details input[type=checkbox]').attr('checked', 'checked');
});
on button click i am checking all checkboxes..and I have other button on the Filedset which i submit..
when I submit clicks I need to send only which ever is checked from Fieldset?
thanks