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 -

Python Tornado package error when running server -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -