Minify CSHTML view in ASP.NET Core

Minify CSHTML view in ASP.NET Core using WebMarkupMin.AspNetCore3

This tutorial will learn how to minify CSHTML view in ASP.NET Core using WebMarkupMin.AspNetCore3. We will also include bundling and minification of static files like CSS and JS on our project. Using these techniques will allow us to improve our website performance in production. What is Bundling and Minification? Bundling and minification are techniques you … Read more

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