Checkbox in ASP.NET MVC without using HTML helper method
I've written this code in View. And the picture is the output of it in Chrome Inspect. @Html.CheckBox("KYCComplete", new { @name = "KYC", @id = "KYC" }) <label class="form-check-label" for="KYC"> KYC Complete ? <button id="Submit">KYC Complete ?</button> </label> In my…