Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @using (Html.BeginForm("Quote", "Quote"))
  2. {
  3. @Html.AntiForgeryToken()
  4. <p>Move From Zip:</p>
  5. <input type="text" name="MoveFromZip"/><br />
  6. <input type="submit" value="Next" name="next">
  7. }
  8.  
  9. @using (Html.BeginForm("thankyou", "Quote"))
  10. {
  11. @Html.Label("Move From Zip ")@Html.ValidationMessage("MoveFromZip")<br /> @Html.TextBoxFor(m => m.MoveFromZip, "", new { maxlength = 5, @class = "short-textbox" })
  12. }
  13.  
  14. public int MoveFromZip { get; set; }
  15. [Required(ErrorMessage = "Move From zip required")]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement