在.Net 4.0之前我们为了做出搜索引擎友好的,对用户也友好的url都是需要自己实现Url重写,现在不需要了,.Net 4.0为我们做这一切。UrlRouting之所以称之为Routing是因为它不但实现了Url重写还可以通过参数得到重写后的Url在页面上使用。
1. Url Routing 的通常用法
UrlRouting在Asp.Net Mvc项目中被广泛使用,在Mvc中很好用,所以移植到了webform中,我们先看下在webform中的使用方式
假定一个使用场景:我们需要做博客每日文章的页面,我们希望的url地址是:
/archive/2010/05/10/default.aspx
这个地址将被映射到~/posts.aspx文件上
要使用UrlRouting,需要将UrlRouting的规则注册到RouteTable中,如下Global文件中注册Routing规则的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public static void RegisterRoutes(RouteCollection routes) { routes.Ignore( "{resource}.axd/{*pathInfo}" ); routes.MapPageRoute( "blogs" , //给这个UrlRouting规则起一个名字 "archive/{year}/{month}/{date}/default.aspx" , //希望的友好Url地址格式 "~/blogs.aspx" , //映射到的aspx页面路径 false , //是否需要检查用户权限 new RouteValueDictionary{ { "year" , DateTime.Now.Year }, { "month" , DateTime.Now.Month }, { "date" , DateTime.Now.Date} }, //参数的默认值 new RouteValueDictionary { { "year" , @"(19|20)\d{2}" }, { "month" , @"\d{1,2}" }, { "date" , @"\d{1,2}" } } //参数的规则,我们在这里限制url中的年月日是我们想要的数据格式 ); } void Application_Start( object sender, EventArgs e) { //在Application_Start时注册的Routing规则 RegisterRoutes(RouteTable.Routes); } |
2. 在页面中使用UrlRouting参数值
1) 在后台代码中使用Route的值
1
2
3
4
5
6
|
protected void Page_Load( object sender, EventArgs e) { string year = ( string )RouteData.Values[ "year" ]; string month = ( string )RouteData.Values[ "month" ]; string date = ( string )RouteData.Values[ "date" ]; } |
2) 在页面上使用
1
2
3
|
< asp:Literal ID = "literalYear" runat = "server" Text="<%$RouteValue:year %>"></ asp:Literal > -< asp:Literal ID = "literal1" runat = "server" Text="<%$RouteValue:month %>"></ asp:Literal > -< asp:Literal ID = "literal2" runat = "server" Text="<%$RouteValue:date %>"></ asp:Literal > |
3) 在DataSource中使用RouteParameter
1
2
3
4
5
6
|
< asp:SqlDataSource ID = "SqlDataSource1" runat = "server" ConnectionString="<%$ ConnectionStrings:TestDb %>" SelectCommand="SELECT BlogID,BlogTitle FROM Blogs Where Category = @category"> < SelectParameters > < asp:RouteParameter Name = "category" RouteKey = "category" /> </ SelectParameters > </ asp:SqlDataSource > |
4) 在页面上显示RouteUrl
1
|
< a href='<%=GetRouteUrl("blogs",new { year = 2010 , month = 05 , date = 05 }) %>'>2010年5月1日的博客</ a > |
3. UrlRouting和UrlRewrite的区别
UrlRouting相对于Url重写是一个比较新的事物,UrlRouting的长处是可以做双向转换,既可以做url重写,还可以根据一些参数获得重写后的Url地址,但是它也有自己的不足之处,比如说如果你想连域名一起重写,比如博客地址yukaizhao.cnblogs.com这样的重写,UrlRouting就做不到了,只能用UrlRewrite。
我在使用路由映射的时候遇到了这种情况,只有无扩展名好使,有扩展名不好使,出错。
我先去看IIS中的处理程序映射
这三个服务都是有的。
然后我新建了一个“通配符脚本映射”
意外的竟然好使了,原因应该是自带服务权限不够,不过不知道在什么地方修改(继续找)。
我一个朋友那干脆连路由都不好使,但是自己加上了通配符脚本也都好使了。