MVC带多个参数的router(sample)

    routes.MapLocalizedRoute("AddProductToCart",
                            "addproducttocart/{productId}/{shoppingCartTypeId}/{quantity}",
                            new { controller = "ShoppingCart", action = "AddProductToCart" },
                            new { productId = @"\d+", shoppingCartTypeId = @"\d+", quantity = @"\d+" },
                            new[] { "Nop.Web.Controllers" });

你可能感兴趣的:(MVC带多个参数的router(sample))