mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
@{
|
|
ViewBag.Title = "List";
|
|
Layout = null;
|
|
}
|
|
|
|
<h3>This is the /Views/Common/List.cshtml View</h3>
|
|
|
|
@*@Html.Partial("MyPartial")*@
|
|
@Html.Partial("MyStronglyTypedPartial", new [] { "Apple", "Orange", "Pear"})
|
|
|
|
@Html.Action("TIME") |