@page @model NorthwindRazor.Pages.Products_DetailsModel <h2>Record Details</h2> <div> <div> <fieldset> <legend></legend> <table> <tr> <td class="editor-label-bold"><label asp-for="Products.ProductID"></label>:</td> <td class="editor-label">@Model.Products.ProductID</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.ProductName"></label>:</td> <td class="editor-label">@Model.Products.ProductName</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.SupplierID"></label>:</td> <td class="editor-field"><label asp-for="Products.SupplierID"></label></td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.CategoryID"></label>:</td> <td class="editor-field"><label asp-for="Products.CategoryID"></label></td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.QuantityPerUnit"></label>:</td> <td class="editor-label">@Model.Products.QuantityPerUnit</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.UnitPrice"></label>:</td> <td class="editor-label">@Model.Products.UnitPrice</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.UnitsInStock"></label>:</td> <td class="editor-label">@Model.Products.UnitsInStock</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.UnitsOnOrder"></label>:</td> <td class="editor-label">@Model.Products.UnitsOnOrder</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.ReorderLevel"></label>:</td> <td class="editor-label">@Model.Products.ReorderLevel</td> </tr> <tr> <td class="editor-label-bold"><label asp-for="Products.Discontinued"></label>:</td> <td class="editor-label">@Model.Products.Discontinued</td> </tr> <tr> <td colspan="2"> <br /> <a href="@Model.ReturnUrl">Return</a> </td> </tr> </table> </fieldset> </div> </div>