Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public IActionResult OnPost(){
  2. if (!ModelState.IsValid) {
  3. return Page();
  4. }
  5.  
  6.  
  7.  
  8. return RedirectToPage('Pages/index.cshtml');
  9.  
  10. }
  11.  
  12. @page
  13. @using RazorPages
  14.  
  15. @model IndexModel
  16. <form method="POST">
  17. <input type="submit" id="Submit">
  18. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement