Umbraco AJAX partial view controller action call - unable to retrieve the Umbraco.Context
问题 I have the following scenario: Calendar page that loads the initial sale nodes from last 2 months. This page has a Load more button that fetches more Sale items that are 2 additional months of Sales . I have added the call to the to controller action like this: public ActionResult LoadMoreSales(int months = 0) { if (Request.IsAjaxRequest()) { if (Request.QueryString["department"] == null) { return PartialView("Calendar/_Sales", GetSales(0, months)); } else { int depId = 0; Int32.TryParse