次の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");
どうすればそれができるかについてのアイデアはありますか?