-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Derek Peacock edited this page Sep 13, 2024
·
43 revisions
This wiki contains some additional resources for CO550, including the LogBooks for one of the assessments.
It also contains the list of teams for the team project.
Razor Pages Movies
MVC Movies
Razor Pages Contoso
MVC Contoso
- Introduction to Blazor
- Blazor Components - Product List
- Dependancy Injection - Shopping Cart
- Shopping Items
- Shopping Cart
This is an example of displaying multiple rows of Cards, 3 per row. Each Card displays an image and some information.
<header class="jumbotron">
<h1>DigiGame Video Game Listing</h1>
</header>
<section>
<div class="row">
@foreach (var item in Model.VideoGame)
{
if (colNo > 0 && colNo % 3 == 0)
{
@:</div><div class="row">
}
<div class="col-lg-4">
<div class="card" style="width: 18rem;">
<img src="..." class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">@item.Title</h5>
<p class="card-text">@item.Description</p>
<a href="#" class="btn btn-primary">View Game</a>
</div>
</div>
</div>
colNo++;
}
</div>
</section>BNU CO550 Web Applications | Dr Derek Peacock | 2022 Semester 1
Recorded Videos
ASP.NET Core 8
Blazor
React
MS Fabric
Filtering Products
Partial Pages
Git & GitHub
2021 Project Demos
Blazor CRUD
Address Service
API Controller
AddressTable 1
AddressTable 2
Upsert Address
Logbooks
LogBook 1
LogBook 2
LogBook 3
LogBook 4
LogBook 5