Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Site.css doesn't change

Tags:

css

asp.net

I opened a new ASP.NET MVC project and ran it. Afterwards, I changed some lines in Site.css. However, when I run the project again and located the element in browser, I realized that style information is the same before I changed it. Stopped and re-run, but no luck at that too.

Than I opened a new project and made my changes before running the project and it worked. Now I need another change in Site.css, but i can't make it changed either. Any ideas what am I doing wrong here?

like image 588
İsmet Alkan Avatar asked Nov 25 '12 17:11

İsmet Alkan


1 Answers

The css is probably cached. You need to refresh the browser. Ctrl+ F5

like image 123
Rayshawn Avatar answered Oct 04 '22 15:10

Rayshawn