Guest User

Untitled

a guest
Apr 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <tr>
  2. <td>
  3. @Html.LabelFor(model => model.Id, "Project Id", new { @class = "control-label" })
  4. </td>
  5. <td>
  6.  
  7. @Html.EditorFor(model=>model.Id)
  8.  
  9. @Html.ValidationMessageFor(model => model.Id)
  10.  
  11. </td>
  12. </tr>
  13. <tr>
  14. <td>
  15. @Html.LabelFor(model => model.Name, "Project Name", new { @class = "control-label" })
  16. </td>
  17. <td>
  18. <div>
  19. @Html.EditorFor(model => model.Name, new { @readonly = "readonly" })
  20. @Html.ValidationMessageFor(model => model.Name)
  21. </div>
  22. </td>
  23. </tr>
Add Comment
Please, Sign In to add comment