Generation

generate functionSun, 04 Dec 2022

Create gridview for data in atm database to display customers names, customers accountNumber, customers Amount, customers Account Type

@foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.Name) </td> <td> @Html.DisplayFor(modelItem => item.AccountNumber) </td> <td> @Html.DisplayFor(modelItem => item.Amount) </td> <td> @Html.DisplayFor(modelItem => item.AccountType) </td> </tr> }

Questions about programming?Chat with your personal AI assistant