I have this in my controller
public ActionResult Testing()
{
CustomerContactModel model = new CustomerContactModel();
...
HttpContext.Current.Session["xxxx"] = "Data";
return PartialView("MyPartialView", model);
}
I get an exception on HttpContext when I get run the controller action from my trest method. How can I solve this problem ?
Thanks,