When i write :

   <% Html.EnableClientValidation(); %>
    <% using (Html.BeginForm())
    { %>
       <%: Html.ValidationSummary(false) %>
       <%: Html.EditorForModel() %>
       <p><input type="submit" name="name" value="Register" />   </p>
    <% } %>

My client validation works perfectly.

but when i change " <%: Html.EditorForModel() %>" with (all the code around is the same) :

   <div>User name<%: Html.EditorFor(x=>x.Name) %></div>
   <div>Password<%: Html.EditorFor(x=>x.Password)%></div>
   <div>Verify password <%: Html.EditorFor(x=>x.Password2) %></div>

Client side validation doesn't work.

am i missing something ? what "EditorForModel" does, that i didn't ?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Looks like you're missing validation messages. EditorForModel() is setting this up for you.

 @Html.ValidationMessageFor(x=>x.Name)
link|improve this answer
Thanks i thought it's a part of the "EditorFor" – OopsUser Jul 15 '11 at 21:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.