response.redirect on asp.net is a 302 jump action

VS 2010 和 .NET 4.0 系列之《ASP.NET 4 中的SEO改进 》篇
http://blog.joycode.com/scottgu/archive/2010/01/06/115842.joy

.NET 4的新特性:图表、SEO及可扩展的输出缓存
http://www.infoq.com/cn/news/2010/02/.NET-4-Charts-SEO-Cache

Asp.Net4.0/VS2010新变化(4):SEO的改进
http://www.cnblogs.com/yjmyzz/archive/2010/03/05/1679235.html


reference:

http://blog.joycode.com/ghj/archive/2010/03.aspx


HTTP状态 解释 程序代码
301 301 代表永久性转移(Permanently Moved)
即永久性重定向
Response.RedirectPermanent("test_2.aspx");
302 302 代表暂时性转移(Temporarily Moved ) Response.Redirect("test_2.aspx");


原文地址:https://www.cnblogs.com/lexus/p/1801017.html