2010-11-22 106 views
0

我要衝洗具有能夠處理soemthing像動作質疑

HTTP控制器:// * /查詢/ ID

其中id表示定購ID和具有很多有效的價值。

我可以用MVC來實現嗎?

回答

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  
}