473,406 Members | 2,843 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

having to reboot every 10 minutes

PJ6
I'm developing my own web controls library for use in a project I'm working
on. Whenever I make changes, I get "access is denied" to the dll and pdb on
recompile. I shut down the indexing service, stopped IIS, and even tried
deleting the file through a command prompt - the only thing that frees up
the file is rebooting. Are there any known workarounds to this charming
problem?

Paul
Nov 19 '05 #1
10 1196
fh
PJ6 wrote:
I'm developing my own web controls library for use in a project I'm working
on. Whenever I make changes, I get "access is denied" to the dll and pdb on
recompile. I shut down the indexing service, stopped IIS, and even tried
deleting the file through a command prompt - the only thing that frees up
the file is rebooting. Are there any known workarounds to this charming
problem?

Paul

I had the same charming pb
I had to disable the windows indexing service.....
it just worked fine...
Nov 19 '05 #2
Try changing the project from Debug to Release mode, recompiling
then changing back again from Release to Debug

Otherwise, you can try kill the Asp worker process which may be holding onto
it
aspnet_wp.exe

"PJ6" <no****@nowhere.net> wrote in message
news:uS****************@TK2MSFTNGP12.phx.gbl...
I'm developing my own web controls library for use in a project I'm
working on. Whenever I make changes, I get "access is denied" to the dll
and pdb on recompile. I shut down the indexing service, stopped IIS, and
even tried deleting the file through a command prompt - the only thing
that frees up the file is rebooting. Are there any known workarounds to
this charming problem?

Paul

Nov 19 '05 #3
"fh" <fh@fh.com> wrote in message news:de**********@s1.news.oleane.net...
I had the same charming pb
I had to disable the windows indexing service.....
it just worked fine...


The Windows Indexing Service can be a real irritation at times - e.g. it
causes huge problems with the FreeTextBox addin...
Nov 19 '05 #4
AF
> The Windows Indexing Service can be a real irritation at times - e.g. it
causes huge problems with the FreeTextBox addin...


Damn it! You indirectly solved one of my reccurent problems on my
web server for a few weeks!!!
Thanks !!

Antonio
Nov 19 '05 #5
Grant Merwitz wrote:
Try changing the project from Debug to Release mode, recompiling
then changing back again from Release to Debug


Really? That is usually the CAUSE of this problem when I hit it.

I just bail out of VS.NET and double-click the prominent desktop batch
file I wrote that deletes every .dll in all my projects. Fixes it
every time.

Strange the MS hasn't put much effort into fixing this. I can only
guess that it goes deep, and there's not much they can do about it
short of a major rewrite. Sort of the same reason that the Visual
Designer always has and always will mangle your HTML.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/

Nov 19 '05 #6
Yeah, we can only hope Vis 2005 fixes these problems.

the way it Mangles my HTML really really really really really really really
pisses me off -- thats a lot of really's

"jasonkester" <ja*********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com...
Grant Merwitz wrote:
Try changing the project from Debug to Release mode, recompiling
then changing back again from Release to Debug


Really? That is usually the CAUSE of this problem when I hit it.

I just bail out of VS.NET and double-click the prominent desktop batch
file I wrote that deletes every .dll in all my projects. Fixes it
every time.

Strange the MS hasn't put much effort into fixing this. I can only
guess that it goes deep, and there's not much they can do about it
short of a major rewrite. Sort of the same reason that the Visual
Designer always has and always will mangle your HTML.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/

Nov 19 '05 #7

"Grant Merwitz" <gr***@workshare.com> escribió en el mensaje
news:e0**************@TK2MSFTNGP09.phx.gbl...
Yeah, we can only hope Vis 2005 fixes these problems.

the way it Mangles my HTML really really really really really really
really pisses me off -- thats a lot of really's
Have you tried VS 2005 Beta 2? It mangles HTML... BIG TIME!!!!!!!!!!!!!!!!!!
:(

-Benton

"jasonkester" <ja*********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com...
Grant Merwitz wrote:
Try changing the project from Debug to Release mode, recompiling
then changing back again from Release to Debug


Really? That is usually the CAUSE of this problem when I hit it.

I just bail out of VS.NET and double-click the prominent desktop batch
file I wrote that deletes every .dll in all my projects. Fixes it
every time.

Strange the MS hasn't put much effort into fixing this. I can only
guess that it goes deep, and there's not much they can do about it
short of a major rewrite. Sort of the same reason that the Visual
Designer always has and always will mangle your HTML.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/



Nov 19 '05 #8
"AF" <nX************@nXxtg.XnetX> wrote in message
news:eW**************@TK2MSFTNGP14.phx.gbl...
Damn it! You indirectly solved one of my reccurent problems on my
web server for a few weeks!!!
Thanks !!


Glad to help... :-)

Now, if I could only get the latest version to do hyperlinks properly... :-)
Nov 19 '05 #9
Noooooooooooooooooooooooooooo

Why do that ... WHY??

I was ranting on this newsgroup about a year ago about this, and someone
told me it would be fixed in 2005.
Damn them!

I have figured out how to prevent it though, but its a bit of a pain in the
arse

When you create say a button, be sure to make it like this:
<asp:Button id="btnWhatever" runat="server"></asp:Button>
rather than
<asp:Button id="btnWhatever" runat="server"/>

For the time being, Vis the Stud will leave it alone.
Then when you double click to add an event, it will suddenly mangle it, like
this
<asp:Button id="btnWhatever"
runat="server"></asp:Button> <!-- ofcourse this is multiplied by how many
controls you have, tables etc. -->

Immeadietaly go back into your html view of you ASPX page, and click
'ctrl+z' twice
It will have moved it back to the original neater form:
<asp:Button id="btnWhatever" runat="server"></asp:Button>

This works to keep your page mangle free, but bare in mind, if you forget to
do it once - and just once - its all over!!!!
"Benton" <co*******@gmail.com> wrote in message
news:3n*************@individual.net...

"Grant Merwitz" <gr***@workshare.com> escribió en el mensaje
news:e0**************@TK2MSFTNGP09.phx.gbl...
Yeah, we can only hope Vis 2005 fixes these problems.

the way it Mangles my HTML really really really really really really
really pisses me off -- thats a lot of really's


Have you tried VS 2005 Beta 2? It mangles HTML... BIG
TIME!!!!!!!!!!!!!!!!!! :(

-Benton

"jasonkester" <ja*********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com...
Grant Merwitz wrote:
Try changing the project from Debug to Release mode, recompiling
then changing back again from Release to Debug

Really? That is usually the CAUSE of this problem when I hit it.

I just bail out of VS.NET and double-click the prominent desktop batch
file I wrote that deletes every .dll in all my projects. Fixes it
every time.

Strange the MS hasn't put much effort into fixing this. I can only
guess that it goes deep, and there's not much they can do about it
short of a major rewrite. Sort of the same reason that the Visual
Designer always has and always will mangle your HTML.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/


Nov 19 '05 #10
PJ6
You know what I hate? While I'm editing HTML (sometimes without even going
into the visual designer) VS will randomly drop my undo history. Like, "oh,
you won't be needing to do undo THAT any more". Geez, thanks, Microsoft.

Paul

"Grant Merwitz" <gr***@workshare.com> wrote in message
news:ez*************@TK2MSFTNGP14.phx.gbl...
Noooooooooooooooooooooooooooo

Why do that ... WHY??

I was ranting on this newsgroup about a year ago about this, and someone
told me it would be fixed in 2005.
Damn them!

I have figured out how to prevent it though, but its a bit of a pain in
the arse

When you create say a button, be sure to make it like this:
<asp:Button id="btnWhatever" runat="server"></asp:Button>
rather than
<asp:Button id="btnWhatever" runat="server"/>

For the time being, Vis the Stud will leave it alone.
Then when you double click to add an event, it will suddenly mangle it,
like this
<asp:Button id="btnWhatever"
runat="server"></asp:Button> <!-- ofcourse this is multiplied by how
many controls you have, tables etc. -->

Immeadietaly go back into your html view of you ASPX page, and click
'ctrl+z' twice
It will have moved it back to the original neater form:
<asp:Button id="btnWhatever" runat="server"></asp:Button>

This works to keep your page mangle free, but bare in mind, if you forget
to do it once - and just once - its all over!!!!
"Benton" <co*******@gmail.com> wrote in message
news:3n*************@individual.net...

"Grant Merwitz" <gr***@workshare.com> escribió en el mensaje
news:e0**************@TK2MSFTNGP09.phx.gbl...
Yeah, we can only hope Vis 2005 fixes these problems.

the way it Mangles my HTML really really really really really really
really pisses me off -- thats a lot of really's


Have you tried VS 2005 Beta 2? It mangles HTML... BIG
TIME!!!!!!!!!!!!!!!!!! :(

-Benton

"jasonkester" <ja*********@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com...
Grant Merwitz wrote:
> Try changing the project from Debug to Release mode, recompiling
> then changing back again from Release to Debug

Really? That is usually the CAUSE of this problem when I hit it.

I just bail out of VS.NET and double-click the prominent desktop batch
file I wrote that deletes every .dll in all my projects. Fixes it
every time.

Strange the MS hasn't put much effort into fixing this. I can only
guess that it goes deep, and there's not much they can do about it
short of a major rewrite. Sort of the same reason that the Visual
Designer always has and always will mangle your HTML.

Jason Kester
Expat Software Consulting Services
http://www.expatsoftware.com/


Nov 19 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Ben Allen | last post by:
Is there a way (through a variable) to show the date of the last server reboot i.e. when PHP last started running? As I am trying to show the server uptime, which of course only works from the last...
0
by: Rick | last post by:
I wrote a medium length stored proc that uses both temp tables and one cursor. I compiled and it ran fine. However, we reboot our machine every weekend, and on Mondays the stored proc gets the...
2
by: Andrew at work | last post by:
hi , since i 've installed VS.NET 2003 with FW 1.1 and 1.0 , sometimes when i use VS.NET , PC reboot itself ?!?!??! why ? have you the same experience ? tnx andrew
0
by: ThunderMusic | last post by:
Hi, I'm trying to install VS.NET 2003 and it keeps asking me to reboot the computer for installing the first step. After rebooting, I try to install the first step, then it tells me again an...
2
by: innesm | last post by:
Hi, Although I havent been able to find any documentation to confirm it, it looks like any change to a windows local group's membership is only reflected in the group editing UI (and the...
1
by: Howard Pinsley | last post by:
Every time I reboot my machine, I can no longer run ASP.NET applications. I have to run aspnet_regiis.exe /i after every reboot. The error: Server Application Unavailable The web application...
3
by: dm1608 | last post by:
I have an Ecommerce application that uses mostly ASP and a bit of ASP.NET. Monitoring the servers memory via SNMP every 5 minutes would indicate that there is a memory leak somewhere within the...
1
by: Moosdau | last post by:
Hi everyone: I have only found system.windows.forms.application.setsuspendstate method could make system into standby or hibernate state, but I don't know how to reboot the system. And I want...
3
by: =?Utf-8?B?Z21wdXJwbGU=?= | last post by:
I am running Windows Vista. My clock runs 2 minutes slow. My clock is not set to sync with any Internet Time. I changed it to the correct time but upon reboot the time was reset. I went in the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.