这是为列名、页面和排序目录使用路由值的好方法,还是有更好的方法来保持 webgrid 设置有效?
目前它看起来像这样:
@Html.ActionLink("Delete", "DeleteEntry", new { id = item.Id, sortdir, sort = webgrid.SortColumn }, new { @class = "LoeschenImgStyle", onclick = "return confirm('You're sure?');" })
我的控制器方法如下所示:
public ActionResult DeleteEntry(Guid id, string sortdir, string sort)
{
_einheitenRepository.DeleteIt(id);
return RedirectToAction("Index", new { sortdir, sort });
}
有没有更好的选择来做同样的事情?
谢谢 :)