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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -