I am calling an ASP.NET MVC action
public JsonResult GetPatient(string patientID) { ...
from JavaScript using jQuery. The following call wo
Replace
data: { patientID: "1" },
with
data: "{ 'patientID': '1' }",
Further reading: 3 mistakes to avoid when using jQuery with ASP.NET