ASP.NET4.0提供了一系列新的特性实现网站的 SEO优化,包括:
  • Page类的新属性:Page.MetaKeywords 和 Page.MetaDescription;
  • Response.RedirectPermanent()、Response.RedirectToRoutePermanent()方法;
  • ASP.NET Web Forms 新的URL路由功能。
Page.MetaKeywords 和 Page.MetaDescription属性将生成  html 标记中的,例如
Page.MetaDescription = "ASP.NET 4.0学习站点:http://dotnet.aspx.cc/";
Page.MetaKeywords = "孟宪会";
将生成如下的代码:
< meta name ="description" content ="ASP.NET 4.0学习站点:http://dotnet.aspx.cc/" />
< meta name ="keywords" content ="孟宪会" />

Response.RedirectPermanent()将进行HTTP 301(Moved Permanently)重定向。
详细信息可以参考:
http://msdn.microsoft.com/en-us/library/system.web.ui.page.metakeywords%28VS.100%29.aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.page.metadescription%28VS.100%29.aspx