tags:

views:

1164

answers:

3

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
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
+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
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
+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