我想知道如何使用 mvc 5 路由来执行以下场景
我的网址结构
http://www.xx.com/search/cat/1
http://www.xx.com/search/cat/prod/1
[Route("search/{cat?}/{prod?}/{pageId:int=1}")]
public ActionResult Index(string cat, string prod, int pageId)
我想知道如何使用 mvc 5 路由来执行以下场景
我的网址结构
http://www.xx.com/search/cat/1
http://www.xx.com/search/cat/prod/1
[Route("search/{cat?}/{prod?}/{pageId:int=1}")]
public ActionResult Index(string cat, string prod, int pageId)