[BExISEntityAuthorize(typeof(Dataset), "id", RightType.Write)]
public ActionResult Start(long id, int version)
{
return RedirectToAction("load", new { id, version });
}
According to AI, this can create several issues which can explain the current behavior, which is a waiting time for several seconds!
change the redirect into:
public JsonResult Start(long id, int version)
{
// return RedirectToAction("load", new { id, version });
var jsonResult = Load(id, version );
return jsonResult;
}
The seconds of waiting time are gone with the change! ..not working
According to AI, this can create several issues which can explain the current behavior, which is a waiting time for several seconds!
change the redirect into:
The seconds of waiting time are gone with the change! ..not working