我要使用@
符号来获得对模型属性的理解,但是ASP.Net Core MVC不允许我使用@
符号,而一旦我将{{1 }}登录下面发布的Razor View代码Select Tag。
这里:
@
我试图用@(item.DhoobiId==ViewBag.Customer_Id ? "selected='selected'" : "")
<select class="kt-selectpicker" data-live-search="true" title="Code Numbers" ng-model="item.Suit_Id" data-style="btn-brand" style="width:100%">
@foreach (var item in dbContext.Customers.ToList())
{
<option value="@item.Customer_Id" @(item.DhoobiId==ViewBag.Customer_Id ? "selected='selected'" : "")>@item.Customer_Code_No</option>
}
</select>
标记来获取模型属性。就像我们在ASP.Net MVC中所做的一样。
在ASP.Net Core MVC中不允许这样做。
@
我希望单击“提交”按钮后选择的“选项值”。该值必须保留。