Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.35 KB | None | 0 0
  1.     <% using (Html.BeginForm())
  2.        {%>
  3.     <%: Html.ValidationSummary(true) %>
  4.     <fieldset>
  5.         <legend>Create Album</legend>
  6.         <%: Html.EditorFor(model => model.Album, new { Artists = Model.Artists, Genres = Model.Genres }) %>
  7.         <p>
  8.             <input type="submit" value="Save" />
  9.         </p>
  10.     </fieldset>
  11.         <% } %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement