Reputation: 525
I'm new to the whole ASP.NET MVC business, and I'm having the weirdest problem. I've been working on a project (MVC3, Razor engine) for the past few days, and yesterday I backed up my project by duplicating its folder. I opened the duplicated project and started working, but I noticed something weird. none of the changes I was making in a CSS file appeared anywhere. I tried changing all sorts of things in it, deleting its content and even deleting the whole file! nothing works. no change. After deleting the whole CSS file from my project, I tried making some changes in the .cshtml file and it does change when I debug the project.
What can be the cause of this?
Upvotes: 0
Views: 1123
Reputation: 1730
Sounds as a caching issue to me.
http://www.refreshyourcache.com/en/cache/
Upvotes: 2
Reputation: 12998
Your browser probably cached the CSS file. Ctrl+F5
should do the trick in most browsers, to reload the css too and make changes visible.
Upvotes: 2