%@ Page Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage(Of $safeprojectname$.RegisterModel)" %> Registrarse Es necesario que las contraseñas tengan al menos <%: Membership.MinRequiredPasswordLength %> caracteres. <% Using Html.BeginForm() %> <%: Html.AntiForgeryToken() %> <%: Html.ValidationSummary() %> Detalles <%: Html.LabelFor(Function(m) m.UserName) %> <%: Html.TextBoxFor(Function(m) m.UserName) %> <%: Html.LabelFor(Function(m) m.Email) %> <%: Html.TextBoxFor(Function(m) m.Email) %> <%: Html.LabelFor(Function(m) m.Password) %> <%: Html.PasswordFor(Function(m) m.Password) %> <%: Html.LabelFor(Function(m) m.ConfirmPassword) %> <%: Html.PasswordFor(Function(m) m.ConfirmPassword) %> <% End Using %> <%: Scripts.Render("~/bundles/jqueryval") %>
Es necesario que las contraseñas tengan al menos <%: Membership.MinRequiredPasswordLength %> caracteres.