Tutorial: Get started with C# and ASP.NET Core in Visual Studio

In this tutorial for C# development with ASP.NET Core, you create a C# ASP.NET Core web app in Visual Studio.

This tutorial shows you how to:

  • Create a Visual Studio project
  • Create a C# ASP.NET Core web app
  • Make changes to the web app
  • Explore IDE features
  • Run the web app

Prerequisites

You need Visual Studio to complete this tutorial. Visit the Visual Studio downloads page for a free version.

Create a project

First, you create an ASP.NET Core project. The project type comes with all the template files you need to build a fully functional website.

  1. On the start window, select Create a new project.

    Screenshot shows the start window for Visual Studio. Create a new project option is highlighted.

  2. In the Create a new project window, select C# from the Language list. Next, select Windows from the platform list, and Web from the project types list.

    After you apply the language, platform, and project type filters, select the ASP.NET Core Web App template, and then select Next.

    Screenshot that shows the ASP.NET Core Web App project template highlighted in the New Project dialog box in Visual Studio.

    Note

    If you don't see the ASP.NET Core Web App template, you can install it from the Create a new project window.

    In the Not finding what you're looking for? message at the bottom of the list of templates, select the Install more tools and features link.

    Screenshot shows the Install more tools and features link that is part of the Not finding what you're looking for message.

    In the Visual Studio Installer, select ASP.NET and web development.

    Screenshot shows the dot NET Core cross-platform development workload in the Visual Studio Installer.

    Select Modify in the Visual Studio Installer. You might be prompted to save your work. Select Continue to install the workload.

    Return to step 2 in this "Create a project" procedure.

  3. In the Configure your new project window, enter MyCoreApp in the Project name field. Then, select Next.

    Screenshot that shows the Configure your new project window in Visual Studio with MyCoreApp entered in the Project name field.

  4. In the Additional information window, verify that .NET Core 3.1 appears in the Target Framework field.

    From this window, you can enable Docker support and add authentication support. The drop-down menu for Authentication Type has the following four options:

    • None: No authentication.
    • Individual accounts: These authentications are stored in a local or Azure-based database.
    • Microsoft identity platform: This option uses Microsoft Entra ID or Microsoft 365 for authentication.
    • Windows: Suitable for intranet applications.

    Leave the Enable Docker box unchecked, and select None for Authentication Type.

    Screenshot that shows the default settings in the Additional information window where the target framework is set to .NET Core 3.1.

  5. Select Create.

Visual Studio opens your new project.

  1. On the start window, select Create a new project.

    Screenshot shows the start window for Visual Studio. Create a new project option is highlighted.

  2. In the Create a new project window, select C# from the Language list. Next, select Windows from the platform list, and Web from the project types list.

    After you apply the language, platform, and project type filters, select the ASP.NET Core Web App template, and then select Next.

    Screenshot that shows the ASP.NET Core Web App project template selected and highlighted on the Create a new project page.

    Note

    If you don't see the ASP.NET Core Web App template, you can install it from the Create a new project window.

    In the Not finding what you're looking for? message at the bottom of the list of templates, select the Install more tools and features link.

    Screenshot shows the Install more tools and features link that is part of the Not finding what you're looking for message.

    In the Visual Studio Installer, select the ASP.NET and web development workload.

    Screenshot shows the ASP.NET and web development workload in the Visual Studio Installer.

    Select Modify in the Visual Studio Installer. You might be prompted to save your work. Select Continue to install the workload.

    Return to step 2 in this "Create a project" procedure.

  3. In the Configure your new project window, enter MyCoreApp in the Project name field. Then, select Next.

    Screenshot that shows the Configure your new project window in Visual Studio with MyCoreApp entered in the Project name field.

  4. In the Additional information window, verify that .NET 8.0 appears in the Target Framework field.

    From this window, you can enable Docker support and add authentication support. The drop-down menu for Authentication Type has the following four options:

    • None: No authentication.
    • Individual accounts: These authentications are stored in a local or Azure-based database.
    • Microsoft identity platform: This option uses Microsoft Entra ID or Microsoft 365 for authentication.
    • Windows: Suitable for intranet applications.

    Leave the Enable Docker box unchecked, and select None for Authentication Type.

    Screenshot that shows the default settings in the Additional information window where the target framework is set to .NET 8.0.

  5. Select Create.

Visual Studio opens your new project.

About your solution

This solution follows the Razor Page design pattern. It's different than the Model-View-Controller (MVC) design pattern in that it's streamlined to include the model and controller code within the Razor Page itself.

Tour your solution

  1. The project template creates a solution with a single ASP.NET Core project named MyCoreApp. Select the Solution Explorer tab to view its contents.

    Screenshot shows the MyCoreApp project selected in the Solution Explorer in Visual Studio.

  2. Expand the Pages folder.

    Screenshot shows the contents of the Pages folder in the the Solution Explorer in Visual Studio..

  3. Select the Index.cshtml file, and view the file in the code editor.

    Screenshot shows the Index dot c s h t m l file open in the Visual Studio code editor.

  4. Each .cshtml file has an associated code file. To open the code file in the editor, expand the Index.cshtml node in Solution Explorer, and select the Index.cshtml.cs file.

    Screenshot shows Index dot c s h t m l file selected in the Solution Explorer in Visual Studio.

  5. View the Index.cshtml.cs file in the code editor.

    Screenshot shows the Index dot c s h t m l dot c s file open in the Visual Studio code editor.

  6. The project contains a wwwroot folder, which is the root for your website. Expand the folder to view its contents.

    Screenshot shows the w w w root folder selected in the Solution Explorer in Visual Studio.

    You can put static site content such as CSS, images, and JavaScript libraries directly in the paths where you want them.

    The project also contains configuration files that manage the web app at run time. The default application configuration is stored in appsettings.json. However, you can override these settings by using appsettings.Development.json.

  7. Expand the appsettings.json file to view the appsettings.Development.json file.

    Screenshot shows appsettings dot j son selected and expanded in the Solution Explorer in Visual Studio.

Run, debug, and make changes

  1. In the toolbar, select the IIS Express button to build and run the app in debug mode. Alternatively, press F5, or go to Debug > Start Debugging from the menu bar.

    Screenshot shows the I I S Express button highlighted in the toolbar in Visual Studio.

    Note

    If you get an error message that says Unable to connect to web server 'IIS Express', close Visual Studio and then relaunch the program as an administrator. You can do this task by right-clicking the Visual Studio icon from the Start Menu, and then selecting the Run as administrator option from the context menu.

    You might also get a message that asks if you want to accept an IIS SSL Express certificate. To view the code in a web browser, select Yes, and then select Yes if you receive a follow-up security warning message.

  2. Visual Studio launches a browser window. You should then see Home and Privacy pages in the menu bar.

  3. Select Privacy from the menu bar. The Privacy page in the browser renders the text that's set in the Privacy.cshtml file.

    Screenshot shows the MyCoreApp Privacy page with the following text: Use this page to detail your site's privacy policy.

  4. Return to Visual Studio, and then press Shift+F5 to stop debugging. This action closes the project in the browser window.

  5. In Visual Studio, open Privacy.cshtml for editing. Next, delete the sentence, Use this page to detail your site's privacy policy and replace it with This page is under construction as of @ViewData["TimeStamp"].

    Screenshot shows the Privacy dot c s h t m l file open in the Visual Studio code editor with the updated text.

  6. Now, let's make a code change. Select Privacy.cshtml.cs. Next, clean up the using directives at the top of the file by using the following shortcut:

    Mouseover or select a greyed out using directive. A Quick Actions light bulb appears below the caret or in the left margin. Select the light bulb, and then select Remove unnecessary usings.

    Screenshot shows the Privacy dot c s h t m l file in the Visual Studio code editor with the Quick Actions tooltip exposed for a greyed out using directive.

    Now select Preview changes to see what changes.

    Screenshot shows the Preview Changes dialog box. The dialog box shows the directive being removed, and previews the code change after the removal.

    Select Apply. Visual Studio deletes the unnecessary using directives from the file.

  7. Next, in the OnGet() method, change the body to the following code:

    public void OnGet()
    {
       string dateTime = DateTime.Now.ToShortDateString();
       ViewData["TimeStamp"] = dateTime;
    }
    
  8. Notice a wavy underline appears under DateTime. The wavy underline appears because this type isn't in scope.

    Screenshot shows an error mark, in the form of a wavy underline, for DateTime in the Visual Studio code editor.

    Open the Error List toolbar to see the same errors listed there. If you don't see the Error List toolbar, go to View > Error List from the top menu bar.

    Screenshot shows the Error List toolbar in Visual Studio with DateTime listed.

  9. Let's fix this error. In the code editor, place your cursor on the line that contains the error, and then select the Quick Actions light bulb in the left margin. Then, from the drop-down menu, select using System; to add this directive to the top of your file and resolve the errors.

    Screenshot shows the Quick Actions options from its drop-down menu with a mouseover on using System.

  10. Press F5 to open your project in the web browser.

  11. At the top of the web site, select Privacy to view your changes.

    Screenshot showing the updated Privacy page that includes the changes you made.

  12. Close the web browser, press Shift+F5 to stop debugging.

Change your Home page

  1. In the Solution Explorer, expand the Pages folder, and then select Index.cshtml.

    Screenshot shows Index dot c s h t m l selected under the Pages node in the Solution Explorer.

    The Index.cshtml file corresponds with your Home page in the web app, which runs in a web browser.

     Screenshot shows the Home page for the web app in the browser window.

    In the code editor, you see HTML code for the text that appears on the Home page.

    Screenshot shows the Index dot c s h t m l file for the Home page in the Visual Studio code editor.

  2. Replace the Welcome text with Hello World!

    Screenshot shows the Index dot c s h t m l file in the Visual Studio code editor with the Welcome text changed to Hello World!.

  3. Select IIS Express or press Ctrl+F5 to run the app and open it in a web browser.

    Screenshot shows the IIS Express button highlighted in the toolbar for Visual Studio.

  4. In the web browser, you see your new changes on the Home page.

    Screenshot shows the Home page for the web app in the browser window. The updated text says Hello World!

  5. Close the web browser, press Shift+F5 to stop debugging, and save your project. You can now close Visual Studio.

Tour your solution

  1. The project template creates a solution with a single ASP.NET Core project named MyCoreApp. Select the Solution Explorer tab to view its contents.

    Screenshot shows the MyCoreApp project selected and its content in the Solution Explorer in Visual Studio.

  2. Expand the Pages folder.

    Screenshot shows the contents of the Pages folder in the Solution Explorer.

  3. Select the Index.cshtml file, and view in the code editor.

    Screenshot shows the Index.cshtml file open in the Visual Studio Code editor.

  4. Each .cshtml file has an associated code file. To open the code file in the editor, expand the Index.cshtml node in Solution Explorer, and select the Index.cshtml.cs file.

    Screenshot shows Index.cshtml file selected in the Solution Explorer in Visual Studio.

  5. View the Index.cshtml.cs file in the code editor.

    Screenshot shows the Index.cshtml.cs file open in the Visual Studio Code editor.

  6. The project contains a wwwroot folder, which is the root for your website. Expand the folder to view its contents.

    Screenshot shows the w w w root folder selected in the Solution Explorer in Visual Studio.

    You can put static site content such as CSS, images, and JavaScript libraries directly in the paths where you want them.

  7. The project also contains configuration files that manage the web app at run time. The default application configuration is stored in appsettings.json. However, you can override these settings by using appsettings.Development.json. Expand the appsettings.json file to view the appsettings.Development.json file.

    Screenshot shows appsettings.json selected and expanded, which exposes appsettings.Development.json, in the Solution Explorer in Visual Studio.

Run, debug, and make changes

  1. In the toolbar, select the IIS Express button to build and run the app in debug mode. Alternatively, press F5, or go to Debug > Start Debugging from the menu bar.

    Screenshot shows the I I S Express button highlighted in the toolbar in Visual Studio.

    Note

    If you get an error message that says Unable to connect to web server 'IIS Express', close Visual Studio and then relaunch the program as an administrator. You can do this task by right-clicking the Visual Studio icon from the Start Menu, and then selecting the Run as administrator option from the context menu.

    You might also get a message that asks if you want to accept an IIS SSL Express certificate. To view the code in a web browser, select Yes, and then select Yes if you receive a follow-up security warning message.

  2. Visual Studio launches a browser window. You should then see Home and Privacy pages in the menu bar.

  3. Select Privacy from the menu bar. The Privacy page in the browser renders the text that's set in the Privacy.cshtml file.

    Screenshot shows the MyCoreApp Privacy page with the following text: Use this page to detail your site's privacy policy.

  4. Return to Visual Studio, and then press Shift+F5 to stop debugging. This action closes the project in the browser window.

  5. In Visual Studio, open Privacy.cshtml for editing. Next, delete the sentence, Use this page to detail your site's privacy policy and replace it with This page is under construction as of @ViewData["TimeStamp"].

    Screenshot shows the Privacy.cshtml file open in the Visual Studio Code editor with the updated text.

  6. Now, let's make a code change. Select Privacy.cshtml.cs. Then, clean up the using directives at the top of the file by selecting the following shortcut:

    Mouseover or select a greyed out using directive. A Quick Actions light bulb appears below the caret or in the left margin. Select the light bulb, and then select the expand arrow next to Remove unnecessary usings.

    Screenshot shows the Privacy.cshtml file in the Visual Studio Code editor with the Quick Actions tooltip open and Preview changes highlighted.

    Now select Preview changes to see what changes.

    Screenshot shows the Preview Changes dialog box. The dialog box shows the directive being removed, and previews the code change after the removal.

    Select Apply. Visual Studio deletes the unnecessary using directives from the file.

  7. Next, create a string for the current date that's formatted for your culture or region by using the DateTime.ToString method.

    • The first argument for the method specifies how the date should be displayed. This example uses the format specifier (d) which indicates the short date format.
    • The second argument is the CultureInfo object that specifies the culture or region for the date. The second argument determines, among other things, the language of any words in the date, and the type of separators used.

    Change the body of the OnGet() method to the following code:

    public void OnGet()
    {
       string dateTime = DateTime.Now.ToString("d", new CultureInfo("en-US"));
       ViewData["TimeStamp"] = dateTime;
    }
    
  8. Notice that the following using directive automatically gets added to the top of the file:

    using System.Globalization;
    

    System.Globalization contains the CultureInfo class.

  9. Press F5 to open your project in the web browser.

  10. At the top of the web site, select Privacy to view your changes.

    Screenshot showing the Privacy page of the MyCoreApp that includes the changes made to add the date.

  11. Close the web browser, press Shift+F5 to stop debugging.

Change your Home page

  1. In the Solution Explorer, expand the Pages folder, and then select Index.cshtml.

    Screenshot shows Index.cshtml selected under the Pages node in the Solution Explorer.

    The Index.cshtml file corresponds with your Home page in the web app, which runs in a web browser.

    Screenshot shows the Home page for the web app in the browser window.

    In the code editor, you see HTML code for the text that appears on the Home page.

    Screenshot shows the Index.cshtml file for the Home page in the Visual Studio Code editor.

  2. Replace the Welcome text with Hello World!

    Screenshot shows the Index.cshtml file in the Visual Studio Code editor with the 'Welcome' text changed to 'Hello World!'.

  3. Select IIS Express or press Ctrl+F5 to run the app and open it in a web browser.

    Screenshot shows the IIS Express button highlighted in the toolbar for Visual Studio.

  4. In the web browser, you see your new changes on the Home page.

    Screenshot shows the Home page for the web app in the browser window. The updated text says 'Hello World!'

  5. Close the web browser, press Shift+F5 to stop debugging, and save your project. You can now close Visual Studio.

Next steps

Congratulations on completing this tutorial! We hope you enjoyed learning about C#, ASP.NET Core, and the Visual Studio IDE. To learn more about creating a web app or website with C# and ASP.NET, continue with the following tutorial:

Or, learn how to containerize your web app with Docker:

See also

Publish your web app to Azure App Service by using Visual Studio