I have some stupid problem.
I work with Razor pages .cshtml and when i add some code to my index.cshtml and save it, run, when app runing i change some code in this page, save, update page in browser and nothing not changed.
Example:
<div class="conntainer">
<div class="row">
<div class="col-4"><h1>Test</h1></div>
</div>
I have this code, i will run app, and change for ex:
<div class="conntainer">
<div class="row">
<div class="col-4"><h1>Changed data</h1></div>
</div>
After reboting page data are not changing, how i can fix it?