标签:style class blog c code java
使用 ASP.NET 又喜欢跟进新技术的朋友可能已经知道,在 ASP.NET 4.0 中增加了 Response.RedirectPermanent() 方法来实现永久重定向,方法的作用在注释中解释的很清楚:执行从所请求 URL 到所指定 URL 的永久重定向,并提供用于完成响应的选项。
在 ASP.NET MVC 3 项目中,我们可以根据需要来使用以下写法实现永久重定向:
public ActionResult Index() { return RedirectPermanent("Contact"); return RedirectToActionPermanent("Contact"); return RedirectToRoutePermanent("Contact"); }
标签:style class blog c code java
原文地址:http://www.cnblogs.com/yipiaoqingshui/p/3748126.html