我有以下 URL,我想隐藏查询字符串,如下所示:
由此:
/main?a=3&date_in=20/03/2013&date_out=20/03/2013
对此:
/main?cars/from/2013/01/27/to/2013/02/26
例如,其中 3 表示汽车
date_in = from and then the date always on that format
and date_out = to and then the date always on that format.
我在 global.asax 上创建了以下内容:
routes.MapPageRoute("main", "main/{*queryvalues}", "~/default.aspx");
关于我该怎么做的任何想法?