[asp.net] 데이터 삭제후에 MVC에서 페이지 reload 하기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
MVC reload page after Delete
My delete method is working but you have to manually refresh the browser to see that it has been deleted. I simply want to reload the page but I can't get it to work. Can someone tell me the proper way to do this?
public virtual ActionResult Index()
{
var recipientOrchestrator = new RecipientsOrchestrator();
RecipientsViewModel model = recipientOrchestrator.GetRecipientsPageData();
return View(model);
}
[HttpPost]
public virtual ActionResult Delete(int id, int applicationId)
{
var recipientOrchestrator = new RecipientsOrchestrator();
recipientOrchestrator.DeleteRecipient(id, applicationId);
return Index();
}
return RedirectToAction("Index");
한마디로 컨트롤러에서 RedirectToAction ~
'Web > ASP.NET MVC' 카테고리의 다른 글
MVC 에서 엑셀 출력 (10) | 2015.04.28 |
---|---|
[.net MVC] 날짜 (DateTime 계산 및 날짜만 추출 (10) | 2015.04.28 |
[asp.net] jsonResult 객체 로 부터 json 을 얻는 방법 (2) | 2015.04.27 |
[asp.net] asp.net mvc 에서 테스트시 jsonResult 에 접근하는 방법 (2) | 2015.04.27 |
[asp.net] view 에서 controller 로 json 객체를 파라미터로서 넘기는 방법 (630) | 2015.04.27 |