Hi I am following the NerdDinner MVC tutorial and wanted to copy a section of code from web page into Default.aspx page(some markup) . However these lines are copied in prefixed by line numbers - see below.This obviouslmy will not compile-how do I copy without these line numbers appearing.
23. <%=Html.Encode(Model.Description) %>
24. </p>
25. <p>
26. <strong>Organizer:</strong>
27. <%=Html.Encode(Model.HostedBy) %>
28. (<%=Html.Encode(Model.ContactPhone) %>)
29. </p>
30.
31. <%= Html.ActionLink("Edit Dinner", "Edit", new { id=Model.DinnerID })%> |
32. <%= Html.ActionLink("Delete Dinner","Delete", new { id=Model.DinnerID})%>
33.
34.</asp:Content>