c# - Partial view not found after editing while debugging -


i have partial view on page, included with

@html.partial("~/views/report/_locationfilter.cshtml", "dashboardoverview") 

when start debugging using visual studio, loads fine, no errors. however, if edit partial in ide (remove letter in string, example) , reload page, following error:

the partial view '~/views/report/_locationfilter.cshtml' not found or no view engine supports searched locations. following locations searched: ~/views/report/_locationfilter.cshtml

what expected happen either edge load unedited page (if editing not allowed while running), or load edited page.

is there way edit partials on fly while debugging?


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -