0

我尝试使用默认参数、正则表达式,但对 URL“/Assets/Images/”没有任何作用。我一直收到 404 错误,说找不到。它仅适用于“/Assets/Images/0”。

 routes.Add(
           "Images",
           new Route(
               "Assets/Images/{*Id}",
                   new ImageRouteHandler(new ImageHandler())
               )
           );
4

1 回答 1

0

您需要向 AssetsController 添加一个名为 Images 的操作

public class AssetsController : Controller
{
   public ActionResult Images()
   {
      return View();
   }
   [HttpGet]
   public ActionResult Images(int id)
   {
      return View();
   }
}
于 2012-09-06T17:55:06.210 回答