Part-6 Blog App using Blazor Server | Dynamic Category Form Dialog Modal by Abhay Prince

preview_player
Показать описание
Build a Full-Stack Blog Web App with Blazor Server from Scratch, Step by Step Tutorial by Abhay Prince
You will learn
EFCore, Code First, Custom Authentication Authorization, Routing, Shared Components, Passing data between components, Cascading Parameters, EventCallbacks, AuthorizeViews, Dynamic Components Rendering etc in Blazor Server

Previous Parts of This Series

Checkout my other videos

#blazorserver #blazor #blazortutorial #abhayprince #blogapp #csharp #webdevelopment #aspnet #dotnet #entityframeworkcore #signalr #tutorial #stepbystep #responsiveui #authentication #realtime #programming #softwaredevelopment #webapp #frontenddevelopment #backenddevelopment #codewalkthrough #blazorwasm #aspnetcoreblazor #buildwithblazor #realworldapplications #realworldappwithblazor
Рекомендации по теме
Комментарии
Автор

sir this save category block is not working in .net8 i made as it is like you did nut this isn't working

chaudharyanurag
Автор

The java code doesn't seem to work. When I click the box nothing happens. No error in the code also linked to the host file as you did.
Edit: Nevermind I managed to get it to work with an updated java line. For anyone else that has issues:
window.openModal = function (id) {
var modal = document.getElementById(id);
modal.showModal();
};

window.closeModal = function (id) {
var modal = document.getElementById(id);
modal.close();
};

buredabby