- How can we load partial views from a different assembly?
By using embedded resources, or better, Razor class libraries.
- What are the two ways to render partial views?
One is to use the Html.PartialAsync method and the other is to use the <partial> tag helper.
- What is the difference between tag helpers and tag helper components?
Tag helpers render a component instead of a custom or an HTML tag, and a tag helper component allows us to intercept and possibly modify all HTML tags before they are rendered.
- How can we restrict what is displayed on a view depending on the environment?
By using the <environment> tag helper.
- What is the difference between Razor class libraries and class libraries? ...