探秘Asp.Net4.0新功能之三:SEO

Asp.Net4.0的webform中,对于Page对象新增加了二个属性:MetaKeywords,MetaDescription 

this.Page.MetaKeywords = "Asp.Net4.0";
this.Page.MetaDescription = "Asp.Net 4.0中新增了MetaKeywords与MetaDescription二个属性";

最后asp.net4.0中新增了Response.RedirectPermanent(string url)来取代Response.Redirect(string url)方法,用于将原来发送的"http 302"变成"http 301",这样据说对搜索引擎更友好(通俗的讲就是原来的Redirect重定向,并不会诱导搜索引擎顺着你的意思抓到新页面,而新的方法可以),类似的还有Response.RedirectToRoutePermanent(string routeName)方法



你可能感兴趣的:(探秘Asp.Net4.0新功能之三:SEO)