can i pass an Int Array from Ajax.ActionLink (from my View) to Controller as a parameter
this is my view
@{
int [] IDArray = ViewBag.AllIds;
}
@Ajax.ActionLink("send", "SendtoSS", new { id= IDArray }, new AjaxOptions
{
OnBegin = "Routing",
UpdateTargetId = "dialog-model",
InsertionMode = InsertionMode.Replace
}, new { @class = "button" })
In my Controller
public ActionResult SendtoSS(int[] ID)
{
}