Michael Washington's Blog, page 3
October 17, 2019
Creating a Database Driven Module For Blazor Oqtane
In this article we will create a Database Driven module for Oqtane, the new web application framework that runs in Microsoft Blazor. There are two methods to create custom modules in Oqtane, inline, and as a separate Visual Studio project. This article will cover creating a module inline…
Tags: Blazor,OqtaneCreating a Hello World Module For Blazor Oqtane
In this article we will create a Hello World module for Oqtane, the new web application framework that runs in Microsoft Blazor. There are two methods to create custom modules in Oqtane, inline, and as a separate Visual Studio project. This article will cover creating a module inline…
Tags: Blazor,OqtaneOctober 16, 2019
Making A Server Side Blazor Application a Progressive Web Application
You can make your Server Side Blazor applications Progressive Webs Applications (PWA), that allow them to be installed (and uninstalled) on mobile devices without the need to go through the normal application store for those devices…
Tags: BlazorOctober 13, 2019
What is Blazor Oqtane?
Oqtane is an application that is built using Microsoft’s Blazor technology. It allows you to deploy and run modules written in Blazor. When Oqtane is deployed and running, it provides a dynamic web experience that can be run as client side Blazor or as server side Blazor.
What makes Oqtane different from other Blazor applications, is that it produces the entire website, not just a single application. When you have a website that requires multiple functionality, such as Forums, Blogs, and Content Management, Oqtane can provide this…
Tags: Oqtane,BlazorOctober 12, 2019
Blazor Microsoft Graph Calendar Example With Active Directory Authentication
You can easily access the Microsoft Graph with Blazor as well as use the Microsoft Azure Active Directory authentication…
Tags: BlazorOctober 4, 2019
Google Email Viewer in Server Side Blazor
You can create a Blazor server-side application that will allow any user with a GMail account to view their emails. This solution does not require that they set their GMail account to less secure access…
Tags: BlazorOctober 3, 2019
Google Authentication in Server Side Blazor
[image error]
You can log users into your server side Blazor (Razor Components) application using Google authentication…
Tags: BlazorSeptember 28, 2019
Radzen–The Fastest Way To Build Blazor Applications
Radzen is an application builder that has been around for years. It allows developers to build Line Of Business applications much in the way Visual Studio LightSwitch did...
Tags: Radzen,BlazorSeptember 26, 2019
Connecting Blazor to Azure SignalR Service
You can properly scale your Blazor application by connecting it to an Azure SignalR Service…
Tags: Blazor,Server-Side BlazorSeptember 22, 2019
A Simple Blazor User and Role Manager
You can create a simple administration page to allow you to create, update, and delete users in your server side Blazor application by adding a single .razor page. This example also demonstrates how to update the passwords for your users…
Tags: Blazor