我使用.Net 4.0框架,並做一些網址路由。這不是一個MVC項目,而是一個winform項目。我創建了兩條路線在Global.asax像這樣: routes.MapPageRoute(
"review", // Route name
"documents/{type}", // Route URL
"~/default.aspx" // Web pa
我使用asp.net 4,c#和路由爲我的網站。 我的路線導致像 A) http://mysite.com/article/58/mytitle (result my article all is fine)
58和mytitle代表Id和Title列在數據庫中我Articles表。 我注意到......如果我要求: http://mysite.com/article/2000000000/m
我看到有人在webform中路由時使用了星號。我只是不明白,星號標誌的重要性,像下面一個 routes.MapPageRoute(
"View Category", // Route name
"Categories/{*CategoryName}", // Route URL
"~/CategoryProducts.aspx" // Web page to h