如何将带有Url.Action的html.TextBox值发送到控制器操作方法输入参数?

时间:2018-06-21 04:11:48

标签: asp.net-mvc

我正在寻找一种非常简单的方法(没有JS?)。

所以-我有一个包含以下功能的“ CartController”:

public ActionResult AddToCart(Products prod, int amount)

因此,我想保留所谓的@ Html.TextBox的输入,并将其作为输入发送到“ AddToCart”(使用@ Url.Action)。

这是我对此的不好解决方案:

@Html.TextBox("Amount", new { @class = "form-control" })
@Url.Action("AddToCart", "Cart", product, "Amount")

好吧,显然这是一个不好的尝试... 有没有简单的解决方法?

0 个答案:

没有答案