Logo akifmt
  • Home
  • About
  • Skills
  • Experiences
  • Projects
  • More
    Recent Dotnet Posts Recent Posts
  • Posts
  • dotnet Blog
  • Contact
  • Dark Theme
    Light Theme Dark Theme System Theme
Logo Inverted Logo
  • Tags
  • .NET8
  • .NET9
  • 16.04
  • Agile
  • All
  • Amazon Aws
  • Android 7 Nougat
  • Authentication
  • Authorization
  • Autocompile Sass and Less
  • Automatically Logout Timer
  • Bash
  • Blazor
  • Blazor Authentication and Authorization
  • Blazor EF Migrations With Multiple Providers
  • Blazor Export Data to Word Excel PDF CSV
  • Blazor Expose a Feed as RSS
  • Blazor External Login
  • Blazor Generic Components
  • Blazor Infinite Scrolling
  • Blazor Plyr Video Player
  • Blazor Radzen CRUD
  • Blazor Radzen Globalization and Localization
  • Blazor Radzen Loading on Page
  • Blazor Radzen SearchComponent
  • Blazor Redis as Backplane
  • Blazor Resize and Upload Images
  • Blazor Scheduling With Quartz.NET
  • Blazor Send Email With MailKit
  • Blazor Serilog Logging to Console File and Database
  • Blazor Using NPM Packages
  • CI/CD
  • Cloud
  • Deployment
  • Different
  • Docker
  • Dotnet
  • Dotnet8
  • Dotnet9
  • Epub Calibre
  • File and Database
  • Game Theory
  • Google
  • Google Maps
  • Hosting Models
  • Html Editor
  • Identity
  • Identity Provider Google Facebook Microsoft Twitter
  • IIS
  • Iisnode
  • Implementing Google ReCAPTCHA V2
  • Implementing Google ReCAPTCHA V3
  • INVICTUS
  • Microservices 2 Blazor Client Ocelot Gateway and Securing API With Duende Identity Server
  • Microservices Blazor Client and Securing API With Duende Identity Server
  • Microsoft Azure
  • Migrating App From .NET 6 or .NET 7 to .NET 8
  • Minimal APIs Native AOT CRUD
  • Monte Carlo Metodu
  • Multiple Themes Dark and Light Mode
  • Nash Equilibrium
  • New Features .NET 9 and C# 13
  • Node.js
  • NodeJS
  • Object Mapping With AutoMapper
  • Object Mapping With Mapster
  • OOP
  • OpenCV Installation and Testing
  • Pokemon Go
  • Prisoner Dilemma
  • Programming
  • Publish
  • Radzen
  • Raspberry Pi
  • Remote Desktop
  • Remote Desktop Connection
  • Role-Based Authorization
  • Self-Hosted
  • Serilog Logging to Console
  • Server
  • Server-Side Rendering
  • Shields.io
  • SSR
  • Teamcity
  • Together
  • Torch
  • Ubuntu
  • Upgrade Radzen 4 to 5
  • Using
  • Versions
  • Vmware Hyper V
  • VNC
  • What Is It
Hero Image
Blazor Using NPM Packages

Blazor Using NPM Packages Create a new folder named npm_packages in your Blazor project. Open the npm_packages folder directory via command prompt and run the following command to initialize NPM in the application: npm init -y This will create a new package.json file in the npm_packages directory. Install the webpack and webpack-cli packages as development dependencies by running the following command: npm install webpack webpack-cli --save-dev Modify the scripts section of the package.

  • Dotnet
  • Blazor Using NPM Packages
Monday, August 7, 2023 | 2 minutes Read
Hero Image
Blazor Generic Components

Blazor Generic Components We will explore a Blazor generic component that can be used for performing CRUD (Create, Read, Update, Delete) operations on a list of items. This component is designed to provide a reusable and efficient solution for displaying and managing data in a Blazor application. Blazor: Blazor is a web framework that allows developers to build interactive web UIs using C# instead of JavaScript. It enables full-stack development with .

  • Dotnet
  • Blazor Generic Components
Saturday, August 5, 2023 | 11 minutes Read
Hero Image
Blazor Expose a Feed as RSS

Blazor Expose a Feed as RSS In this example, we will explore how to expose a feed as RSS using C# and the Blazor framework. We will create a controller that generates an RSS feed based on mock data. RSS (Really Simple Syndication): RSS is a web feed format used to publish frequently updated content, such as blog posts, news headlines, or podcasts. It allows users to subscribe to a website’s content and receive updates in a standardized format.

  • Dotnet
  • Blazor Expose a Feed as RSS
Wednesday, August 2, 2023 | 3 minutes Read
Hero Image
Blazor EF Migrations with Multiple Providers

Blazor Blazor Entity Framework Migrations with Multiple Providers This code demonstrates how to implement multiple database providers in a Blazor application using C#. It allows you to switch between different database providers, such as InMemory, SQLite, and SQL Server, based on the configuration settings. Database Provider: Refers to the type of database being used, such as InMemory, SQLite, or SQL Server. Connection String: A string that contains the necessary information to connect to a specific database.

  • Dotnet
  • Blazor EF Migrations with Multiple Providers
Monday, July 31, 2023 | 4 minutes Read
Hero Image
Blazor Authentication and Authorization

Blazor Authentication and Authorization This example represents a Blazor application that allows users to view a list of blog posts. The application uses ASP.NET Core and Blazor authentication and authorization to control access to the blog posts. Before diving into the code, let’s understand some key concepts related to Blazor: Blazor: Blazor is a web framework that allows developers to build interactive web UIs using C# instead of JavaScript. It enables developers to write code that runs on the client-side in the browser using WebAssembly or on the server-side using SignalR.

  • Dotnet
  • Blazor Authentication and Authorization
Sunday, July 30, 2023 | 5 minutes Read
Hero Image
Blazor Radzen CRUD

Blazor Radzen CRUD In this article, we will explore the code for a Blazor page called “BlogPost”. This page displays a list of blog posts using a RadzenDataGrid component. We will go through the key concepts, code structure, and code examples to understand how this page works. Before diving into the code, let’s understand some key concepts related to Blazor and RadzenDataGrid: Blazor: Blazor is a web framework that allows developers to build interactive web UIs using C# instead of JavaScript.

  • Dotnet
  • Blazor Radzen CRUD
Wednesday, July 26, 2023 | 7 minutes Read
Hero Image
Blazor Radzen Search Comp.

Blazor Radzen SearchComponent 1. Blazor Radzen List Page The code provided is a Blazor component that demonstrates how to fetch data from a service and display it in a RadzenDataList component. It also includes a custom search component that allows users to search for specific blog posts. Blazor: Blazor is a web framework for building interactive client-side web applications using C# instead of JavaScript. It allows developers to write code in C# that runs on the client-side, eliminating the need for JavaScript.

  • Dotnet
  • Blazor Radzen SearchComponent
Friday, July 21, 2023 | 4 minutes Read
Hero Image
Blazor Plyr Video Player

Blazor Plyr Video Player This code provides a video player component in a Blazor application. It allows users to watch videos with controls and captions. The video player is customizable using the Plyr.io library. Blazor: Blazor is a web framework that allows developers to build interactive web UIs using C# instead of JavaScript. It enables full-stack development with .NET. Plyr.io: Plyr.io is a JavaScript library that provides a customizable video player with a modern UI.

  • Dotnet
  • Blazor Plyr Video Player
Thursday, July 20, 2023 | 2 minutes Read
  • ««
  • «
  • 1
  • 2
  • »
  • »»
Navigation
  • About
  • Skills
  • Experiences
  • Projects
  • Recent Dotnet Posts
  • Recent Posts
  • dotnet Blog
  • Contact
Contact me:
  • akifmt@gmail.com
  • akifmt

Stay up to date with email notification

By entering your email address, you agree to receive the newsletter of this website.

Liability Notice: This theme is under MIT license. So, you can use it for non-commercial, commercial, or private uses. You can modify or distribute the theme without requiring any permission from the theme author. However, the theme author does not provide any warranty or takes any liability for any issue with the theme.


Toha Theme Logo Toha
© 2016-2025 Copyright.
Powered by Hugo Logo
We would like to use third party code to improve the functionality of this website.