Besides the wwwroot folder, you can also specify custom _________ to determine from where the static files should be served.
- Middleware
- Routes
- File Providers
- Controllers
In ASP.NET Core, you can specify custom file providers to determine from where the static files should be served. This allows flexibility in serving static content from different locations, not just the "wwwroot" folder.
Loading...
Related Quiz
- While developing an ASP.NET Core MVC application, you notice that a particular piece of logic is repeated across several Razor views. What would be the best way to encapsulate and reuse this logic?
- You want to develop a web application that can run seamlessly on both Linux and Windows without modifying the codebase. Why might ASP.NET Core be suitable for this task?
- You are just starting with ASP.NET Core and are looking at a piece of code in the Startup.cs file with endpoints.MapControllerRoute. What is the purpose of this code?
- In comparison to the traditional ASP.NET, how does ASP.NET Core handle configuration data?
- The Output property of a custom tag helper, of type _______, allows you to manipulate the final output of the tag helper.