Asp.net MVC学习笔记3----Route的限制

来源:互联网 发布:java 业务日志记录 编辑:程序博客网 时间:2024/05/16 07:06

假如在Gloable.ascx文件中定义了如下的Route,

 

 

 

如果输入的参数不能转化整形的话,就会出错,

 

The route defined in Listing 1 will match any of the following URLs:

  • /Product/23
  • /Product/7

Unfortunately, the route will also match the following URLs:

  • /Product/blah
  • /Product/apple

如果是第二个的话就会出错,

 

使用正则表达式

原创粉丝点击