How to show success message in view when RedirectToAction used

前端 未结 2 1512
鱼传尺愫
鱼传尺愫 2021-01-31 10:26

I am working on MVC3 project and I want to show a message when I use RedirectToAction in view. I have used ViewBag but it is not working.

Please anybody help me.

2条回答
  •  无人共我
    2021-01-31 11:01

    you can use TempData to show the message

    in your View

    @if (TempData["Success"] != null)
    {
     

    @TempData["Success"]

    }

    and in your controller after success

    TempData["Success"] = "Added Successfully!";
    return RedirectToAction("actionname", "controllername");
    

提交回复
热议问题