Skip to main content

Posts

Showing posts with the label ASPDotNetCore

ASP .NET Core Website with VS 2019 IDE

Welcome back Readers, here this article we’ll learn about, how to create a Website using Microsoft Visual Studio IDE (note: it is now the Text Editor Visual Studio Code). We’re going to use Visual Studio 2019 Community Edition for Windows. So, let’s get started by opening Microsoft visual studio. And if you haven’t downloaded the software then click here to setup the development environment. I’ve enabled the Dark theme, why cause I like it 😀, you’re free to select a theme of your choice. After opening Visual Studio, click on Create a New Project On the next screen, Search for “Web” in the top given search bar and then select ASP.NET Core Web Application, then simply click on Next Give your project a name, then click on Next On the next screen, Keep the setting s as it as and select Web Application from the choices, then again click on Next. You’ll see something similar to the below image, the theme might be different. 😅 Le...

Hands-On ASP .NET Core WebApp

Here come the most awaited article on how to get started with the Hands- On with the ASP .NET Core via Visual Studio Code (VS Code: Text Editor) and a command line prompt. So if you’re new to the ASP .Net Core, then do have a look at this article . Though the Command line terminal is integrated inside VS Code, still we’ll use MS Command prompt. In the later articles we’ll use the integrated VSCode Interface to interact with the Terminal So to get started with ASP .NET Core: Open the Command prompt on windows or Terminal on Linux or bash on Mac accordingly. Navigate to the directory where we want to create our first Web App. Run the following command (without “” quotes): “dotnet new webApp -o myWebApp --no-https” “cd myWebApp” Now that we’ve run the above commands we can see that a folder is created in the name of “myWebApp” and it has a basic sample Web Application of the Application. Now let’s run the application by using the Command Line, and see what’s inside of t...
Counter Widget