我在 BeginForm 之外有两个下拉菜单。我需要获取这些值并将它们添加到 TextBoxFor 中,这样我就可以将这些值传递到我的控制器中。
@Html.DropDownListFor(x => x.SelectedProductID, Model.ProductList, new { @id = "ProductList", @class = "product_list" })
@using (Html.BeginForm("Cart", "Home", FormMethod.Post))}
{
@Html.TextBoxFor(m=>m.Product,new { value ="*<need the select ddl value>*", @class = "hidden" }))
.... other stuff