Tour the app

Tour the app

  1. Note the HTTP URL displayed in the terminal output, e.g. https://localhost:7192.

  2. Open the app in your browser by browsing to the HTTPS URL.

  3. Navigate to the Privacy page by clicking on the link in the navigation bar at the top of the page. Notice that the URL ends with Privacy.

    1. By convention, Razor Pages apps map page routes to the files within the Pages directory structure.

  4. In the terminal window, stop the application by pressing the Ctrl+C key combination (Command+C on Mac).

You've verified you can successfully compile, run, and deploy the project. Let's modify it so the user can display and update a list of pizzas.

We can also use dotnet watch to enable hot reloading and see the changes in real time!

Last updated