How to enable IIS on Windows 10

Enable IIS on windows

What Is IIS? IIS is a Web Server software created by Microsoft, which is designed for hosting websites.  It can be used in a standard Html page and dynamic pages like PHP pages and ASP.NET applications. To dig deeper into IIS’s definition and history, you can refer to Wikipedia.org for full details. To enable IIS … Read more

Create a Stored Procedure in SQL Server

SQL Stored procedure

This article will guide you on how to create a Stored Procedure in SQL Server. The stored procedure is composed of Structured Query Language (SQL) found in a Relational Database Management System. Stored Procedure is used to store SQL queries that are mainly used to modify data from a Database. This is an alternative way … Read more

Categories SQL

ASP.NET MVC Folder Structure

ASP NET MVC Folder Structure

In this article, we are going to define the ASP NET MVC folder Structure. ASP.NET MVC Web application is created with the MVC template pattern and folder structure is auto-generated when you create a new project using Visual studio. The folder structure of this framework has specified places where you can place your code classes. Model, … Read more

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

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