Reputation: 2869
I have come across a very interesting issue. Here are my settings for the site in question:
I have created some standalone ASPX pages that are not hooked into Sitefinity and have an issue when it comes to compilation after making changes to the .cs files. I will make a change in the .cs, save and refresh the site and the changes do not take effect. If I make a change to the .aspx (putting a space character at the end of a line) compilation seems to occur and the changes previously made in the .cs are now live.
Any ideas where I should start debugging this? Is it a strange caching issue that gets invalidated only by updating the .aspx file? Is it a Sitefinity setting that is preventing .cs changes from causing compilation somehow?
-------------------- EDIT --------------------
I am opening the site via File > Open > Website, and it is .NET 4.0
Upvotes: 1
Views: 509
Reputation: 1743
I believe on a Sitefinity site, to see updates to your code-behind (.aspx.cs) files or to regular class files (.cs) you can either:
Also, if you're testing with IE8 then make sure to delete your cache from the developer tools bar. I've noticed that IE will NOT dump your cache completely unless you hit F12 (dev tools bar) > HTML tab > Clear Browser Cache...
This is not a bug, AFAIK.
Upvotes: 1