Hi All
I'm using asp.net core and tag helpers to create a login page. The standard html controls are working just fine like the example below
<label asp-for="Username"></label>
<input asp-for="Username" />
<span asp-validation-for="Username"></span>
I'm having a problem when using tag helpers with Angular Material html tags. So as a result the following doesn't databind the "RememberMe" field of the model
<md-checkbox asp-for="RememberMe">Remember Me</md-checkbox>
Does anyone know why?
Thanks a lot.