I am making an ajax call using the following code.
$.ajax(
{
url: '/BuildingCompany/EditAjax/' + id,
cache: false,
type: 'POST',
data: ({ imageValue: $(this).attr("src") }),
contentType: 'application/json; charset=utf-8',
dataType: 'json'
}
In the EditAjax action, how should I retrieve data send by this ajax call.