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

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

Query DataTable using LINQ in C#

This tutorial will show you how to Query DataTable using LINQ in C#. LINQ is an acronym for Language Integrated Query, which is descriptive for its use and what it does. The Language Integrated part means that LINQ is part of programming language syntax. LINQ can be very useful for querying for different type of data sources. … Read more