• MVC 中 注册不成功 或其他操作不成功 提示办法


    在Controller中 .cs

                      public  ActionResult AddUser(User u)

                        {

                                         ……

                                 try

                                  {

                                          ……

                                           GetInsertUser(u);        //  注册  或其他操作方法

                                           retutrn RedirectToAction("SHow","AllUser");

                                    }

                                   catch

                                    {

                                             ViewBag.IsError=true ;

                                             ViewBag.Meaage="对不起,注册失败!";  // 或其他操作失败信息

                                     }

                         }

          然后  在当前的视图(AddUser.cshtml) 页面的最低下加如下代码

              @{

                         if(ViewBag.IsError!=null && ViewBag.IsError )

                             {

                                   <script> alert("@ViewBag.Message")  </script>   // 注意alert里面的“”很重要!

                             }

                 }

  • 相关阅读:
    Java 装饰者模式
    struts2注解的作用
    XML DOM 笔记
    XMLHttpRequest的用法
    Eclipse中实现JS代码提示功能
    .after()和.before()的关系
    xml的的特殊字符转义&
    html和xml的区别
    dom4j的解析实例
    tld自定义标签系列--使用body-content的作用--比较有用
  • 原文地址:https://www.cnblogs.com/yingger/p/3422200.html
Copyright © 2020-2023  润新知