c# - asp.net core html not updating -


my html code:

<div class="header"></div> <div class="tiles"></div> <div class="list"></div> <div class="footer"></div> 

changed to:

<div class="header"></div> <div class="content">     <div class="tiles"></div>    <div class="list"></div> </div> <div class="footer"></div> 

i made content div around tiles , list.

my problem doing html won't update in browser. , yes cleared browser cache, disabled caching in devtool. added no cache meta tag. rebuild solution, clean solution no luck. whatever code add or delete nothing happens. css updated not html.

i tested deleting content , when run project still had every content on browser. else can fix this?


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -