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
Post a Comment