27 Ocak 2019 Pazar

index

@model IEnumerable<Bgm.Models.EntityFramework.Marka>
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>
<a href="/Marka/ekleGuncelle/0">ekle</a>
<table class="table tab-content">
    <thead>
    <tr>
        <th>adi</th>
        <th>düzenle</th>
        <th>sil</th>
    </tr>


    </thead>
    <tbody>
    @foreach (var i in Model)
    {
        <tr>
            <td>@i.Marka1</td>
            <td>
                <a href="/Marka/ekleGuncelle/@i.Id">düzenle</a>

            </td><td>
                <a href="/Marka/sil/@i.Id">sil</a>

            </td>



        </tr>
       
    }



    </tbody>



</table>

Hiç yorum yok:

Yorum Gönder