我的客户端名称(Create.cshtml)。
如果客户端没有在Droplist中存在,我想允许用户在单独的表单中执行此操作,但是用户必须在Create.cshtml中的DropList之后选择它。 ,而不会丢失他在Create.cshtml中输入的任何其他信息。
我可以只刷新下拉列表吗?
这是ClientName的代码
<label>@Html.LabelFor(model => model.ClientName)</label>
@Html.DropDownListFor(model => model.ClientNameList, new SelectList(Model.ClientName, "idClient", "Client"), new { style = "width:100px;height:30px;font-size:13px" })
@Html.ValidationMessageFor(model => model.ClientName)
由于