Skip to content

Module 1

codehero007 edited this page Jul 6, 2022 · 11 revisions

Getting Started

Table of Contents

  1. Prerequisites
  2. Intro to C#
  3. Intro to HTML
  4. Intro to JavaScript
  5. Intro to CSS

Prerequisites

System requirements:

  1. Windows 10 operating system
  2. 8.35 GB of storage available
  3. Microsoft Edge (recommended) or Google Chrome browser
  4. A good internet connection

Download and install the following:

  1. Visual Studio Community 2022 (or later version)
    • Make sure ASP.NET and web development option is selected during the installation process.
  2. SQL Server Management Studio (SSMS)

Note: Please make sure your computer meets the system requirements and have installed the software before continuing.

Create a Project

Step 1: Create a web app project

  1. Open visual studio. Create a new project, select ASP.NET Core Web App template, then click Next. devenv_7EDgF3mDfr
  2. Add DemoApp as a project name, save to your desired location, then click Next. devenv_R9mswrQNak
  3. On Additional Information, select .NET 6.0 as the framework, then click Create. devenv_j9N89QvClB

Note: If .NET 6.0 is not available, you probably have an older version of Visual Studio and might not be able to complete the lab. Please make sure you install Visual Studio Community 2022 (or a later version) before proceeding to the next steps.

  1. Start your application by pressing run button, which starts debug mode, to make sure it builds and loads successfully. devenv_75dqmcPNjv

Note: Starting the application for the first time will prompt you to trust the SSL certificate. Click yes on the next two screens. After that, a browser window will automatically pop up and you might have to Continue to localhost (unsafe), since on Step 3 we left Configure for HTTPS selected by default. You're encouraged to read up on SSL, HTTPS, and localhost on your own time.

  1. After the home page loads, press the Stop Debugging button. devenv_KCPhtWjwYU

Clone this wiki locally