strange error when deploying new code-behind assemblies

J

Jiho Han

I have an asp.net application that is running and I updated code behind
assemblies after I modified some internal logic.

Then I tried to view the page and got a very strange error, something like
the following:

Could not find file "C:\WINDOWS\TEMP\qoqdmvbc.dll".

I get errors like that in different places where I've updated assemblies.
They are all named with random alpha letters + .dll.
I'm assuming I am getting caught between the page compilation somehow
because I get the correct pages after a bit.

Can someone clarify on what is really happening?
Thanks
Jiho
 
A

Ashish

Jiho said:
I have an asp.net application that is running and I updated code behind
assemblies after I modified some internal logic.

Then I tried to view the page and got a very strange error, something like
the following:

Could not find file "C:\WINDOWS\TEMP\qoqdmvbc.dll".

I get errors like that in different places where I've updated assemblies.
They are all named with random alpha letters + .dll.
I'm assuming I am getting caught between the page compilation somehow
because I get the correct pages after a bit.

Can someone clarify on what is really happening?
Thanks
Jiho

these are asp.net compiled code files, they are in directory

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\<yourvirtualdirectory> , or whatever version you are using ..

i get these errors sometimes, when file locking gets asp.net confused, I
just go there and delete the <yourvirtualdirectory> directory.., that
solves the problem,

hth
-ashish
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top