Advertisement
wingman007

2018_DotNetProgrammingPartTime_Create.cshtml

Sep 25th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. ?@page
  2. @model WebApplication1bDeletMe.Pages.CreateModel
  3. @{
  4.     ViewData["Title"] = "Create";
  5. }
  6.  
  7. <h2>Create</h2>
  8.  
  9. <p>Enter your name</p>
  10.  
  11. <form method="post">
  12.     <div asp-validation-summary="All"></div>
  13.     <div>Name: <input asp-for="Customer.Name" /></div>
  14.     <!-- field by field validation -->
  15.     <span asp-validation-for="Customer.Name"></span>
  16.     <input type="submit" />
  17.     <!-- Summary validation-->
  18.  
  19. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement