现在的网站对SEO越来越重视,有很多公司在做seo优化;换句话说SEO可以给网站主带来利益,做好了SEO,不需要付广告费就可以从搜索引擎带来更多的流量。鉴于此Asp.Net4.0对seo方面做了一些优化工作。
1. MetaDescription, MetaKeywords指定页面的meta 描述和关键字标签
我们可以在aspx文件的Page指令中指定:
以下为引用的内容: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="OutputCacheTest.Default" |
也可以在cs文件中指定,例如:
以下为引用的内容: protected void Page_Load(object sender, EventArgs e) |
2. 使用Response.RedirectPermanent告诉搜索引擎当前地址已经永久重定向了
在HttpResponse中新添加了RedirectPermanant方法和RedirectToRoutePermanent方法,这两个方法都可以实现301重定向,用来告诉搜素引擎当前访问的内容已经永久的移动到了另一个地址,这在程序改版修改了url规则时非常有用,使用举例如下:
以下为引用的内容: protected void Page_Load(object sender, EventArgs e) protected void Page_Load(object sender, EventArgs e) |
3. 在.Net 4.0中RadioButtonList和CheckBoxList服务器端控件都支持用ul或ol标签做输出,例如
以下为引用的内容: <asp:CheckBoxList runat="server" ID="list" RepeatLayout="OrderedList"> |
将输出
以下为引用的内容: <ol id="list"> |