MVC頁面重新導向的幾個方法

來源:互聯網
上載者:User

標籤:

MVC頁面重新導向,主要有以下幾種形式:

   1.Response.Redirect();方法

[csharp] view plain copy 
  1.        
  2.   
  3. using System;  
  4. using System.Collections.Generic;  
  5. using System.Linq;  
  6. using System.Web;  
  7. using System.Web.Mvc;  
  8.   
  9. namespace MvcDemo.Controllers  
  10. {  
  11.     [HandleError]  
  12.     public class HomeController : Controller  
  13.     {  
  14.         public ActionResult Index()  
  15.         {  
  16.             ViewData["Message"] = "歡迎使用 ASP.NET MVC!";  
  17.             Response.Redirect("User/News");  
  18.             return View();  
  19.         }  
  20.   
  21.         public ActionResult About()  
  22.         {  
  23.             return View();  
  24.         }  
  25.     }  
  26. }  

 

 


     2.Return  Redirect();方法

[csharp] view plain copy 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Web;  
  5. using System.Web.Mvc;  
  6.   
  7. namespace MvcDemo.Controllers  
  8. {  
  9.     [HandleError]  
  10.     public class HomeController : Controller  
  11.     {  
  12.         public ActionResult Index()  
  13.         {  
  14.             ViewData["Message"] = "歡迎使用 ASP.NET MVC!";  
  15.             return Redirect("User/News");  
  16.         }  
  17.   
  18.         public ActionResult About()  
  19.         {  
  20.             return View();  
  21.         }  
  22.     }  
  23. }  


 


      3.Return RedirectToAction();方法

該方法有兩種重載(具體幾種記不清了,就算兩種吧)如下

[csharp] view plain copy 
    1. RedirectToAction(“ActionName”);//該方法直接寫入頁面,前提必須是在改控制器下問頁面如前面的Index.aspx,和About.aspx  
    2.   
    3. RedirectToAction(“ActionName”,"ControllerName")//該方法直接寫入ActionName和ControllerName,前提必須是在改控制器下問頁面如前面的Index.aspx,和About.aspx  
    4.   
    5. using System;  
    6. using System.Collections.Generic;  
    7. using System.Linq;  
    8. using System.Web;  
    9. using System.Web.Mvc;  
    10.   
    11. namespace MvcDemo.Controllers  
    12. {  
    13.     [HandleError]  
    14.     public class HomeController : Controller  
    15.     {  
    16.         public ActionResult Index()  
    17.         {  
    18.             ViewData["Message"] = "歡迎使用 ASP.NET MVC!";  
    19.             return RedirectToAction("News","User");  // Redirect重新導向經過Controllor,View不經過Controllor
    20.         }  
    21.   
    22.         public ActionResult About()  
    23.         {  
    24.             return View();  
    25.         }  
    26.     }  
    27. }  

MVC頁面重新導向的幾個方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.