You are creating a website and want to add a folder for storing images, scripts, and CSS files. Which default folder in ASP.NET Core would you typically use?
- wwwroot
- App_Data
- Views
- Controllers
In ASP.NET Core, the 'wwwroot' folder is the default location for storing static web assets like images, scripts, and CSS files. These assets can be directly served to clients without the need for additional routing.
Loading...
Related Quiz
- You are tasked with deploying an ASP.NET Core application. Which tool or service would help automate the process of getting new code from a developer's machine to a production environment?
- When configuring ASP.NET Core Identity, the _________ class is used to specify policies like password strength and lockout duration.
- The __________ file in an ASP.NET Core project contains routes, middleware configurations, and other app initializations.
- The _________ file was a unique feature in the early versions of ASP.NET Core but was later replaced in .NET Core 2.0 and beyond.
- What is the purpose of the UseMvc method in the Startup.cs file?