Hello,
I have a website which consists of 10,000 aspx pages.
The problem that I have is that when I developing and make a code change in a "aspx.cs" file and upload this to the server. The change is not made which reason is because the code needs to compile. It seems that the website uses the "old" code.
So what I need to do is put the attribute batch="true" to true. When I do this it takes between 30 minutes - 60 minutes to load the first page of the website because it seems that the whole website is recompiling. I have batch="false" as default to not make
the website recompile at some not wanted point so the website isn't accessible.
Am I doing this the correct way? Is there a way to only compile the files that I upload to the server and not the entire website each and every time?
My compilation tag in web.config
<compilation debug="false ...
Go to the complete details ...