How to fix Page Not Refreshing After Changes
By FoxLearn 2/18/2024 9:33:35 AM 622
This post shows you How to fix .NET Core MVC Page Not Refreshing After Changes.
asp.net core live reload
By default, If you are not only explicit in the 'Development' environment then the Razor View is compiled and you will not see any changes made to .cshtml file.
cshtml changes not showing
In ASP.NET Core 2.2 you can add a configuration to your Startup class as shown below.
1 |
services.AddMvc().AddRazorOptions(options => options.AllowRecompilingViewsOnFileChange = true ); |
But, In ASP.NET Core 3.0 you should install the Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation from Manage Nuget Packages, then add a configuration to your Startup class as shown below.
1 |
services.AddControllersWithViews().AddRazorRuntimeCompilation(); |
Another way to separate project
1 2 3 4 5 |
if (HostingEnvironment.IsDevelopment()){ services.AddMvc().AddRazorOptions(o => { o.FileProviders.Add( new PhysicalFileProvider(PATH_TO_PROJECT)); }); } |
Through this c# example, i hope so you can fix ASP.NET Razor views are not updating when simply updating html or asp.net mvc view not updated if only .cshtml changed.
- How to fix InvalidOperationException: No service for type 'Microsoft.AspNetCore.Identity.UserManager'
- How to fix 'IMvcBuilder' does not contain a definition for 'AddNewtonsoftJson'
- System.InvalidOperationException: Unable to resolve service for type while attempting to activate
- Unable to resolve service for type 'Microsoft.AspNetCore.Identity.RoleManager'
- Solr Search in .NET Core
- Handling 415 Unsupported Media Type in .NET Core API
- Accessing Users from IdentityServer in .NET Core
- API Versioning in C# .NET Core
Categories
Popular Posts
Freedash bootstrap lite
11/13/2024
tsParticles Authentication Template
11/17/2024