码迷,mamicode.com
首页 > Web开发 > 详细

MVC中重定向几种方法

时间:2017-04-05 17:28:47      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:result   message   space   generic   and   sys   view   collect   name   

//1.Response.Redirect
using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Web;  
using System.Web.Mvc;  
  
namespace MvcDemo.Controllers  
{  
    [HandleError]  
    public class HomeController : Controller  
    {  
        public ActionResult Index()  
        {  
            ViewData["Message"] = "欢迎使用 ASP.NET MVC!";  
            Response.Redirect("User/News");  
            return View();  
        }  
  
        public ActionResult About()  
        {  
            return View();  
        }  
    }  
}  

//2.Return  Redirect
using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Web;  
using System.Web.Mvc;  
  
namespace MvcDemo.Controllers  
{  
    [HandleError]  
    public class HomeController : Controller  
    {  
        public ActionResult Index()  
        {  
            ViewData["Message"] = "欢迎使用 ASP.NET MVC!";  
            return Redirect("User/News");  
        }  
  
        public ActionResult About()  
        {  
            return View();  
        }  
    }  
}  

//3.Return RedirectToAction
RedirectToAction(“ActionName”);//该方法直接写入页面,前提必须是在改控制器下问页面如前面的Index.aspx,和About.aspx  
  
RedirectToAction(“ActionName”,"ControllerName")//该方法直接写入ActionName和ControllerName,前提必须是在改控制器下问页面如前面的Index.aspx,和About.aspx  
  
using System;  
using System.Collections.Generic;  
using System.Linq;  
using System.Web;  
using System.Web.Mvc;  
  
namespace MvcDemo.Controllers  
{  
    [HandleError]  
    public class HomeController : Controller  
    {  
        public ActionResult Index()  
        {  
            ViewData["Message"] = "欢迎使用 ASP.NET MVC!";  
            return RedirectToAction("News","User");  
        }  
  
        public ActionResult About()  
        {  
            return View();  
        }  
    }  
}  

 

MVC中重定向几种方法

标签:result   message   space   generic   and   sys   view   collect   name   

原文地址:http://www.cnblogs.com/X-Jonney/p/6669648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!