在页面加载后保留在选项中选择的值,或者在asp.net core mvc中单击提交按钮

时间:2019-06-14 14:12:59

标签: c# asp.net .net asp.net-core

我要使用@符号来获得对模型属性的理解,但是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中不允许这样做。

@

我希望单击“提交”按钮后选择的“选项值”。该值必须保留。

0 个答案:

没有答案