In my view i`m having various ul each containing various li and each li contains a textbox, in which the user enters information.
<ul id="ul1"><li><input type="text"></li><li><input type="text"></li></ul>
<ul id="ul2"><li><input type="text"></li><li><input type="text"></li></ul>
I also have a table which has 2 columns and various rows. Each column contains a textbox.
My question is as follows: 1. How do I retrieve the values separately [each ul separately and table data]and send them to the controller using ajax?