Install and Configure Apache on Windows

Install and configure apache on windows

In this article, we are going to discuss how we can install and configure Apache on Windows. Apache is the most widely used web server software. Although we can use Xamp or Wamp which is already a package that contains Apache HTTP Server and database that you need on your Web Development. For me, it … Read more

Convert an Image to Base64 String

Convert image to base64

Transmitting images through the network or API’s and Web service in programming is a little bit tricky. And the best way to do it is to convert images into a Base64 string. To put it simply, Base64 is an encoding schema used for interpreting binary data in a string format. This is beneficial when the storage … Read more

Categories C#

How to Create an ASP.NET MVC Application

Creating asp.net mvc application

ASP.NET MVC (Model-View-Controller) is a popular framework for building robust, scalable, and maintainable web applications. It provides a powerful set of tools and features that enable developers to create dynamic and interactive websites. In this article, we will walk you through the process of creating an ASP.NET MVC application from scratch. Let’s get started! What … Read more

Generate a Self-Signed Certificate on Windows

Self-signed certificate

This tutorial will guide you on how to Generate a Self-Signed Certificate on Windows. To do that, we are going to use a software called OpenSSL. OpenSSL is an open-source command-line tool commonly used to generate private keys, create CSRs, install your SSL/TLS certificate, and identify certificate information. Self-signed Certificate If you are a developer, … Read more

JavaScript Date Objects

Javascript Date object

Javascript date objects are used to work with dates and times. Using the new Date() constructor, we can create a new date object. We can also manually set the year, month, day, hour, minute, second, and millisecond fields using local or UTC or GMT time. This way javascript can represent date and time till year … Read more

How to install Entity Framework Core

How to install Entity Framework Core

This article will guide you on How to install Entity Framework Core. Entity Framework Core can used with .NET Core and .Net Framework 4.6 Web Application. This Framework is not included with .Net Core and .NET Framework. It can be installed using the NuGet package. To use Entity Framework Core in our projects we need … Read more

Using JQuery DataTables in ASP.Net Core

Using JQuery DataTables in ASP.Net Core

This article will create an application that displays a list of users in an Html table Using JQuery DataTables in ASP.Net Core. We will also use Entity Frameworks in this project. We will create a table using the Entity Framework, insert sample data, and display it on our Datatables Grid. What is JQuery Datatable? Jquery … Read more