La propiedad del modelo int muestra 0 en textbox .net nore
<%
string userName = string.Empty;
if (Model != null)
{
userName = Model.Name;
}
%>
<input asp-for="Name" value="@userName" class="form-control" />
Shahnawaz Memon