0

我有一个更新页面,有一个字段调用成分名称,下拉列表列出了所有成分,但是如何绑定存储在每个成分中的值以用于配方。

在我的控制器中,我有以下代码,它将在下拉列表中列出所有成分;

foreach (RecipeIngredient recipeIngredient in recipe.RecipeIngredientList)
{
    rIngredients.Add(recipeIngredient);
}

在更新页面上,我希望文本框显示一个值。

4

1 回答 1

0

<%: Html.DropDownList("BusinessTypeId", new SelectList(Model.BusinessTypes, "BusinessTypeId", "BusinessTypeName"), "Select an Option")%>

这里的值是 BusinessTypeId,名称是 BusinessTypeName

 foreach (BusinessType businessType in _businessDetails.BusinessTypes)
                {

                        businessType.BusinessTypeName = businessType.SpanishBusinessTypeName;

                    businessTypeLst.Add(businessType);
                }

//页

var _ddValue = $('#BusinessTypeId').val();

将其分配给文本框

$('#txtboxId').val(_ddValue );

于 2012-04-05T08:40:41.907 回答