PDA

Click to See Complete Forum and Search --> : ASP, DLLs etc


Mark Sreeves
Dec 21st, 1999, 10:16 PM
I've written a series of ASPs talking to a DLL (written in vb) on my server.

My problem (one of my many problems but I'm sure you aren't interested in my personal life ;)) is that when I try to recompile the dll I get a "permission denied" message and I have to reboot the server before I can compile it.

I assume that something still thinks it's using it but nothing is.

any suggestions

ps.
I am setting the objects = nothing in the ASP when I've finished with them.




------------------
Mark Sreeves
Analyst Programmer

Mark.Sreeves@Softlab.co.uk
A BMW Group Company

Dec 22nd, 1999, 11:18 AM
Create a batch file in your Winnt\system32 directory with the following lines...

@Echo Off
Cls
C:
Cd\Winnt\System32\Inetsrv
Net Stop iisAdmin /y
Mtxstop
Net Start W3svc

This will stop IIS and then restart it.
It usually works for me, but sometimes a reboot is all that works. Hope it works for you.

Mark Sreeves
Dec 23rd, 1999, 02:49 PM
Thanks for that SFD it worked perfectly!

------------------
Mark Sreeves
Analyst Programmer

Mark.Sreeves@Softlab.co.uk
A BMW Group Company