Articles - Hosting.Work


Host ASP.NET Core on Kubernetes with Minikube

Updated on: March 9, 2024

In this tutorial we are going to host our ASP.NET Core app on Kubernetes. We will be using Minikube which is a tool that runs a single-node Kubernetes cluster on your personal computer. It supports all OS including Windows, macOS & Linux. The installation procedure is given at here. Note that you should have Docker installed on your pc.

(more…)

Necessary .NET Security features for securing your web applications

Updated on: January 25, 2024

It is extremely necessary to secure your .NET applications before you get hacked. To apply best securities, you have to includes secure coding techniques, anticipate risks and perform security checkups at regular intervals. Fortunately, .NET has lots of security API which you can include in your app to make it more robust. In this tutorial we are going to take a detailed look at the necessary .NET security features which you must apply.

(more…)

Automated UI Testing with Selenium in ASP.NET Core

Updated on: January 23, 2024

Automated UI testing can be performed with Selenium Library. In this tutorial I will perform UI testing of an ASP.NET Core app with Selenium. Selenium supports all the major browsers, for this article I will test only the Chrome browser. This is because writing test for other browsers are exactly similar and you can do that by yourself. The source codes of this tutorial can be downloaded from my GitHub Repository.

(more…)