У меня есть следующий класс модели: -
public class ContactinfoCreate
{
public ContactInfo ContactInfo { get; set; }
public string CustomCheck { get; set; }
}
и внутри моего asp. net mvc ядра я добавил следующее внутри моего представления: -
@model LandingPageFinal3.ViewModels.ContactinfoCreate
<div class="custom-control custom-checkbox mb-3">
<input type="checkbox" class="custom-control-input" id="CustomCheck" name="CustomCheck">
<label class="custom-control-label" for="customCheck">By submitting the N....</label>
</div>
, но сгенерированный флажок будет неактивным ... может кто-нибудь посоветовать?