i am trying to post my string called ‘selected’ trough my $.ajax call but the controller(selected=null) receives a null value? selected has a value ({‘selected’:0100}) according to fiddler?
[HttpPost]
public ActionResult Index(string selected)
{
return Json(new {value = "this is a test"});
}
$(document).ready(
$("#btnSave").click(
function () {
var checkboxesselected = "0100";
$.ajax({ type: 'POST',
url: "/Home/Index",
datatype: 'json',
data: "{'selected':" + checkboxesselected + "}"
});
}
)
The problem is you’re sending the data to jQuery as a string literal as opposed to an object. Your line with the data parameters should be
data: {selected: checkboxesselected }