i have jquery datatable i need to pass 2 arguments with this code does not works perhaps does not call the procedure
var params = {
"name": "ProgressivoRichiesta", "value": $("input[name='<%=txtTargaResponsabile.UniqueID%>']").val(),
"name": "sDataIncidente", "value": $("input[name='<%=txtDataSinistro.UniqueID%>']").val()
}
$('#listReceivedMail').DataTable({
destroy: true,
"dataType": 'json',
"contentType": "application/json; charset=utf-8",
"type": "GET",
"url": "CinfoService.svc/ProcedureName",
"data": params,
thanks