Loading partial view using ajax and RenderMvcController
Hi
I would like to call a method on my CustomController using ajax to get a PartialView returned - version 7.2.1.
public class ResultMatchController : BaseController { public ActionResult Brutto(RenderModel model) { var resModel = new ResultRankViewModel(model.Content, model.CurrentCulture); .. return PartialView("RankingBrutto", resModel); } }
Loading partial view using ajax and RenderMvcController
Hi
I would like to call a method on my CustomController using ajax to get a PartialView returned - version 7.2.1.
in my template
This gives me when called
http://mysite/ResultMatch/Brutto?_=1420840168857 404 (Not Found)
What is the correct address to call the Brutto method on my CustomController ?
I don't know where this comes from ?_=1420840168857 - I have tried to call http://mysite/ResultMatch/Brutto also without luck
/Paul S
is working on a reply...