Design

Design
asp.net mvc

2016年2月29日 星期一

ASP.NET MVC Controller常用的Return 範例


ASP.NET MVC Controller常用的Return 範例  
ttp301永久轉址
return RedirectPermanent("www.yahoo.com.tw");//外部
return RedirectToActionPermanent("Contact"); //內部
http302暫時轉址
return Redirect("www.yahoo.com.tw");
return RedirectToAction("PasswordError", "Login");
跳到錯誤頁面
return HttpNotFound("error123");
return new HttpStatusCodeResult(404, "nod found");
跳到指定的檢視頁面
return View("About");
跳到指定的檢視頁面,並指定主版頁面
return View("About","_LayoutPage1");
回傳值
(也可傳回html)
return Content("回傳內容"); //

沒有留言:

張貼留言