First of all ASP.NET and MVC are very new to me (+- one month).In my view i've got this code1# block\[code\]<label for="from">Data Inicio</label> <input id="from" name="from" type="text" /><label for="to">Data Fim</label> <input id="to" name="to" type="text" />\[/code\]2# block\[code\]<div class="btn-group"> <button type="button" class="btn btn-primary" onclick="listaC006()">Pesquisa Normal</button> <button type="button" class="btn btn-primary" onclick="flistaC006()">Pesquisa com filtro</button> </div>\[/code\]and also \[code\]function list() { $.ajax( { type: 'POST', url: '/Inscricao/_Lista', dataType: 'html', cache: false, async: true, success: function (data) { $('#lista').html(data); } }); }\[/code\]in order to fill this "\[code\]<div id="lista"></div>\[/code\]" dynamically.It's possible to pass the values (datepicker) of "from" and "to" in the onclick event in order to use those values to perform a querie?