Guest User

Untitled

a guest
Mar 7th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. / / login model is my model class
  2. [HttpPost]
  3. public ActionResult Login(Login model)
  4. {
  5. return View();
  6. }
  7.  
  8.  
  9. @using (Html.BeginForm())
  10. {
  11. <p>
  12.  
  13. UserName: @Html.TextBoxFor(m=>m.UserName)
  14. </p>
  15. <p>
  16. Password: @Html.PasswordFor(m => m.Password)
  17. </p>
  18. <p>
  19. <input type="submit" name="login" value="Login" />
  20. <input type="submit" name="cancel" value="Cancel" />
  21. </p>}
Add Comment
Please, Sign In to add comment