How to create a JavaScript project in Visual Studio

Knowing JavaScript is more or less required when working with front-end web development. One way to learn JavaScript is to start with a simple web project containing an HTML page that uses JavaScript. So, the next question is which IDE or editor to use. In this post, we will create a JavaScript project in Visual Studio IDE. It supports JavaScript IntelliSense with auto-complete suggestions and debugging capabilities.

ASP.NET MVC : Installing AdminLTE dashboard to replace Bootstrap template

When creating a new ASP.NET MVC project in Visual Studio, the project will use a Bootstrap front-end framework by default. But there are more sophisticated templates with extended functionality available. One of them is AdminLTE, a dashboard & control panel theme also built on top of the Bootstrap. This article will show you how to replace the default Bootstrap framework with the AdminLTE template in an ASP.NET MVC project for the .NET framework.

Visual Studio: How to create Blank or Empty Solution

When starting a project with a solution that will contain multiple projects, it may be best to begin with entirely empty solution and then add new or existing projects to that blank solution. We are going to demonstrate how to do that using Visual Studio 2022. We will also briefly touch on the problem when the blank solution is missing.

WinForms : How to create a Windows Forms Project in Visual Studio

This article is intended for beginners and will demonstrate how to create a Windows Forms / WinForms project using Visual Studio 2019 Community Edition, which is a free version of Visual Studio. The WinForms application created by Visual Studio will contain only a main form with no controls. Then in the future article, we will make this application a bit more interesting and useful.