First of all ASP.NET and MVC are very new to me (+- one month). In my view i've got this code
1# block
<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" />
2# block
<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>
and also
function list() {
$.ajax(
{
type: 'POST',
url: '/Inscricao/_Lista',
dataType: 'html',
cache: false,
async: true,
success: function (data) {
$('#lista').html(data);
}
});
}
in order to fill this "<div id="lista"></div>" 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?
