mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
10 lines
199 B
Plaintext
10 lines
199 B
Plaintext
@model Razor.Models.Product
|
|
|
|
@{
|
|
ViewBag.Title = "NameAndPrice";
|
|
Layout = "~/Views/_BasicLayout.cshtml";
|
|
}
|
|
|
|
<h2>NameAndPrice</h2>
|
|
The product name is @Model.Name and it costs $@Model.Price
|