bUnit is a testing library for Blazor Components. Its goal is to make it easy to write comprehensive, stable unit tests
Search Results for: html
Timeline component for Blazor
I introduce my new #Timeline component for #Blazor #WebAssembly and Blazor #Server. The components is build with #NET6.
Getting started with Java
In this new post “Getting started with Java”, I share with you my consideration about this programming language in comparison to C#
Create Stripe webhooks receiver
I create a Stripe webhooks receiver for ASP.NET Core and Blazor. This is the first post of 4 where I show the full implementation.
How to make menus with CSS
I will show how to make menus with CSS without using JavaScript: dropdown menus, drawers, and even a mobile hamburger menu
ScrollTabs component for Blazor
Do you have to display a lot of tabs in your page, but the look and feel is no what you want. Here you have a ScrollTabs component for Blazor
Responsive table layout with only CSS
I want to show you how to create a fully responsive table layout with only CSS that helps you to display your tables on every screen.
Create form dynamically with Blazor
I show you how to create form dynamically with Blazor reading the definition of the form from an API or a Json file. It is working quite well
Drag and drop with Blazor
I show how to implement drag and drop with Blazor because drag and drop has become a popular interface solution in modern applications.
Internet Explorer is dead
After 27 years, Microsoft has finally bid farewell to the Internet Explorer and will redirect Explorer users to the latest version of Edge.
Create documentation with Docsify and GitHub Pages
Documentation is an essential part of making any project useful to users. Here how to Create documentation with Docsify and GitHub Pages
Guided Tours Blazor component
I introduce you my new Guided Tours #Blazor component to help your users to understand the UI of your application
Clippy Blazor component
I introduce you my new Clippy Blazor component for Blazor WebAssembly and Blazor Server. The component is built with .NET6.
Blazor component for ChartJS
I finally complete the first implementation of my Blazor component for ChartJS that helps you to create beautiful graphs
Add Security Headers to Blazor WebAssembly
In this new post, I like to explain how to add security headers to Blazor WebAssembly to follow the recommendations from OWASP.
Add Security Header our website
In this new post, I’ll show you how to add security header to our website to be ready for a penetration test. Quick and easy to implement.
Validate JSON with Postman
In this new post, I explain how to validate a JSON result with Postman from your APIs using JavaScript with few lines of code. Full code here
Testing APIs with RestClient in Visual Studio Code
I show a simple way for Testing APIs with RestClient in Visual Studio Code. RestClient is a simple extension for Visual Studio Code.
Remote debug Android devices
In this post, I show you how to remote debug live content on an Android device from your Windows, Mac, or Linux computer. Easy peasy
Browser detect component for Blazor
In this post, I talk about user-agent and I’m going to create a browser detect component for Blazor WebAssembly and Blazor Server with .NET6.
Deploy WordPress with Azure DevOps
In this new post, I show you how to deploy WordPress with Azure DevOps using an instance of WordPress app service created in the Azure
World Map component for Blazor
This World Map component for Blazor WebAssembly and Blazor Server creates an interactive map of the world or specific region and shows your data
Add Code Snippet in Razor pages
In this new post, I show you how to add code snippet in Razor pages for Blazor WebAssembly and Blazor Server using highlight.js
Dynamically add JavaScript from Blazor components
In this new post, I show you the code to dynamically add JavaScript from a Blazor components coming from the component itself or another URL
Uploading files in ASPNET Core
Uploading files in ASP.NET Core is largely the same as standard full framework MVC but now we can stream large files. Here I explain how