简体   繁体   中英

Visual Studio 2015 Enterprise (Update 3) Does not Apply Web Forms code

2 days ago the Visual Studio worked perfect, but after the update I just can't work with it. The problem is that the Visual Studio does not apply my code in ASP.NET Web Forms, I see every time what I did one or two step back.

I tried to re-build the solution and it didn't work.

Any ideas?

I think your problem might be that you need to cache-bust your css file. You can do this by adding a version number to your include (or using a variety of other methods: see https://css-tricks.com/strategies-for-cache-busting-css/ )

Let's have a look at manually providing a version number: You need to provide/change a version number on your css file that you modified like so:

<link rel="stylesheet" href="style.css?v=2">

Notice the ?v=2 part. Your browser will interpret that there's a new version of your css file and will fetch the new version.

(Keep in mind you'll have to do the same for javascript files.)

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM