Первая попытка MVC.Попытка вернуть JsonResult.У меня есть это в моем контроллере:
[AcceptVerbs(HttpVerbs.Get)]
public JsonResult GetHistoricalReports()
{
JsonResult result = Json("test");
//JsonResult result = Json(DashboardSessionRepository.Instance.HistoricalReports);
return result;
}
и, на мой взгляд:
function OnHistoricalListBoxLoad(historicalListBox) {
$.getJSON('GetHistoricalReports', function (data) {
alert(data);
}
У меня установлена точка останова внутри GetHistoricalReports, и это действительно ударил.Однако предупреждение в OnHistoricalListBoxLoad никогда не отображается.