订单ID问题的行动

时间:2010-11-22 07:24:46

标签: asp.net-mvc asp.net-mvc-2

我想让控制器可以处理像

这样的东西

的http:// * /查询/ ID

哪个id表示订单ID并且具有大量有效值。

我可以使用MVC来实现吗?

1 个答案:

答案 0 :(得分:2)

当然。设置你的路线,你很高兴:

routes.MapRoute(
    "Query",
    "query/{id}",
    new { controller = "Query", action = "Index", id = UrlParameter.Optional }
);

并在您的QueryController中:

public ActionResult Index(string id)
{
    ... do something with the id here    
}