Summary.aspx
Dosyayı İndir
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Collections.Generic.List<EntityFrameworkLibrary.Sample>>" %>
<%@ Import Namespace="EntityFrameworkLibrary" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
List
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>Örnek Listesi</h2>
<table>
<% foreach (Sample sample in Model) { %>
<tr>
<td><% Response.Write(sample.SampleId); %></td>
<td><% Response.Write(sample.SampleName); %></td>
<td><% Response.Write(sample.SampleValue); %></td>
<td> <%: Html.ActionLink("Güncelle", "Detail", new { sampleId = sample.SampleId }, null)%></td>
<td> <%: Html.ActionLink("Sil", "Delete", new { sampleId = sample.SampleId }, null)%></td>
</tr>
<% } %>
</table>
<%: Html.ActionLink("Ekle", "Detail")%>
</asp:Content>
Dosyayı İndir