Guest User

Untitled

a guest
Jun 25th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <%= Html.TextBox("amount", Model.amount, new { id = "Pamount" })%>
  2. <%=Html.ValidationMessage("Pamount", " ")%>
  3. <%= Html.TextBox("amount", Model.amount, new { id = "Eamount" })%>
  4. <%=Html.ValidationMessage("Eamount", " ")%>
  5.  
  6. if (obj.amount.ToString() == "0")
  7. modalState.AddModelError("Pamount", "");
  8.  
  9. ModelState.AddModelError("amount", "");
  10.  
  11. <%= Html.TextBox("Foo.amount", Model.Foo.amount, [...]
  12. <%= Html.TextBox("Bar.amount", Model.Bar.amount, [...]
Add Comment
Please, Sign In to add comment