FineUI 官方论坛

标题: 登录成功后跳转页面,有什么办法做到? [打印本页]

作者: DJ.DAY    时间: 2017-1-3 23:38
标题: 登录成功后跳转页面,有什么办法做到?
本帖最后由 DJ.DAY 于 2017-1-3 23:40 编辑

登录成功我要跳转页面到Index 有什么方法?
不能用return view(“index”);
请求是post~请赐教.   
  1.        public ActionResult Index()
  2.         {
  3.             return View();
  4.         }


  5. [HttpPost]
  6.         [ValidateAntiForgeryToken]
  7.         public ActionResult btnLogin_Click(FormCollection values)
  8.         {
  9.             if (values["tbxUserName"] == "admin" && values["tbxPassword"] == "admin")
  10.             {
  11.                 ShowNotify("成功登录!", MessageBoxIcon.Success);
  12.             }
  13.             else
  14.             {
  15.                 ShowNotify("用户名或密码错误!", MessageBoxIcon.Error);
  16.             }

  17.             return UIHelper.Result();
  18.         }
复制代码


作者: jerry_wRiaM    时间: 2017-1-4 10:22
可以直接跳轉到你需要的頁面啊.
   return RedirectToAction("Index", "Home");
作者: zjl_359715    时间: 2017-6-14 17:15
这个问题,你解决了吗?
作者: zjl_359715    时间: 2017-6-14 17:29
ExtAspNet.PageContext.Redirect("default.aspx");




欢迎光临 FineUI 官方论坛 (https://fineui.com/bbs/) Powered by Discuz! X3.4