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

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -