How can you force ASP.NET 1.1 to recompile its runtimes as in the ASP.NET Temporary Files location?
+1
A:
Shutdown IIS (make sure the wpworker procs are killed), blow away the WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files and blow away any dlls in your own bin directory. Once you restart IIS it'll rebuild.
Arnshea
2009-03-20 20:33:21
I was looking for an easier less intrusive way to do this... I am already doing this. I can't shutdown IIS on a production box.
Danny G
2009-03-21 16:04:01
+1
A:
I might be reading WAYYY to deeply into this problem, but if you are having problems with references just in case it helps try this:
http://geekswithblogs.net/shahed/archive/2006/11/16/97240.aspx
Although disabling batch compilation is a performance hit.
Paul
2009-03-20 20:47:39
Actually this was my exact problem... this is the perfect blog post to explain to me, i was using the batch="false", but i like the idea of the precompiled page!!! thanks. rep up and answer!
Danny G
2009-03-21 16:05:10
+2
A:
To force a rebuild make a change to the web.config file (something as simple as a newline is enough) this forces a recompile.
Gavin Miller
2009-03-20 20:50:43