8 lines
140 B
Plaintext
8 lines
140 B
Plaintext
|
@{
|
||
|
ViewBag.Title = "GetStudentCourses";
|
||
|
}
|
||
|
<h2>GetStudentCourses</h2>
|
||
|
@foreach (var item in ViewBag.CourseList)
|
||
|
{
|
||
|
<li>@item</li>
|
||
|
}
|