Display popup confirmation message with MVC C# after postback

血红的双手。 提交于 2019-12-04 07:58:22

Instead of RedirectToAction(), return View :

    new Email().Send(contact);

    ViewBag.Message = "Message Sent"; 

    return View();

In View:

@if(ViewBag.Message != null)
{
<script>

$(document).ready(function(){

alert('@ViewBag.Message');

});

</script>

}

Add Inside controller

        ViewBag.IsEmailSent=true;



public ActionResult Index(ContactViewModel contactVM){
            if (!ModelState.IsValid)
            {
                string url = Request.UrlReferrer.AbsolutePath+ "#contact";

                return View();
            }
            else
            {
                var contact = new Contact
                {
                    Name = contactVM.Name,
                    Email = contactVM.Email,
                    Subject = contactVM.Subject,
                    Message = contactVM.Message
                };
                new Email().Send(contact);
                ViewBag.IsEmailSent=true;
                return RedirectToAction("Index");
            }

Index.cshtml page

   @if(ViewBag.IsEmailSent)
    {
    <script>
$(function(){
     $("#successModal").modal('show'); });
    </script>
    }

Change the result (from RedirectToAction("Index")) to a view that provides the confirmation.

If you don't want to have something that's mostly a copy of an existing page (like Index) then pass an object containing a ShowConfirmation flag, and in the index view have some logic to show the confirmation if that flag is set.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!