<%= Ajax.ActionLink("Delete", "Delete", new { id = item.int_GroupId }, new AjaxOptions {HttpMethod="Delete", Confirm="Delete Group with Group ID:" + item.int_GroupId + " Group Name:" + item.vcr_GroupName})%>|
[HttpDelete]
public ActionResult Delete(int id, FormCollection collection)
{
try
{
Group group = _db.Groups.First(c => c.int_GroupId == id);
_db.Groups.DeleteOnSubmit(group);
_db.SubmitChanges();
return RedirectToAction("ManageGroup"); // redirect to same list page
}
catch
{
return RedirectToAction("ManageGroup"); // redirect to same list page
}
}
1)如何在删除操作后显示更新的记录。由于我不明原因,重定向操作没有发生。人们在这里使用的最佳方式是什么? 2)我将如何显示确认在显示新记录后,在同一个列表页面上删除记录?
答案 0 :(得分:0)
我使用部分视图解决了我的问题