[DOTNET] ASP.NET Web Application Debugging

2002-04-30 Thread Donal Devine
I have failed abysmally to debug an ASP.NET Web Application. Here is the error: Error while trying to run project: Unable to start debugging on the web server. Could not start ASP.NET or ATL Server debugging. Verify that ASP.NET or ATL Server is correctly installed on the server. Would you li

[DOTNET] Unable to start ASP.NET Server debugging

2002-04-30 Thread Donal Devine
I have failed abysmally to debug an ASP.NET Web Application. Here is the error: Error while trying to run project: Unable to start debugging on the web server. Could not start ASP.NET or ATL Server debugging. Verify that ASP.NET or ATL Server is correctly installed on the server. Would you li

Re: [DOTNET] OT: .job files

2002-04-15 Thread Donal Devine
y sure I'm not wrong. Patrick Burrows Anyway I'm drinkin' more. Now Playing: ministry - jesus built my hotrod > -Original Message- > From: Donal Devine [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 15, 2002 12:00 PM >

Re: [DOTNET] OT: .job files

2002-04-15 Thread Donal Devine
See: AT /? -Original Message- From: Patrick Burrows [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 16:54 To: [EMAIL PROTECTED] Subject: [DOTNET] OT: .job files Where are the windows 2000 Task Scheduler .Job files stored? I searched my machine to no avail. Here's the deal, I am sick and

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
End.Subtract(tsStart)); Response.Write(""); -Original Message- From: Mattias Konradsson [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 16:14 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Measuring performance >From: "Donal Devine" <[EMAIL PROTECTED]> >Do you have allow

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
: [DOTNET] Measuring performance >>From: "Donal Devine" <[EMAIL PROTECTED]> >>Can you post the code? public void Page_Load(Object sender, EventArgs e) { TimeSpan tsStart = Process.GetCurrentProcess().Threads[0].UserProcessorTime; int c = 0; for (int i=

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
Can you post the code? -Original Message- From: Mattias Konradsson [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 13:24 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Measuring performance >To view the permissions of this assembly on your machine launch the DotNet Framework Configuration >

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
OTECTED] Subject: Re: [DOTNET] Measuring performance >From: "Donal Devine" <[EMAIL PROTECTED]> >Are you an administrator? Yah I am... but do I have to give some explicit rights to the component in order to let it access UserProcess, doesnt it run with administrator rights?

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
Are you an administrator? -Original Message- From: Mattias Konradsson [mailto:[EMAIL PROTECTED]] Sent: 15 April 2002 11:21 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Measuring performance >Hmm...I am not getting that, what platform are you using? >UserProcessTime is only supported on t

Re: [DOTNET] Measuring performance

2002-04-15 Thread Donal Devine
System.Diagnostics namespace? -Original Message- From: Mattias Konradsson [mailto:[EMAIL PROTECTED]] Sent: 13 April 2002 08:33 To: [EMAIL PROTECTED] Subject: Re: [DOTNET] Measuring performance >From: "Donal Devine" <[EMAIL PROTECTED]> >TimeSpan tsStart; >TimeSpa

Re: [DOTNET] Measuring performance

2002-04-11 Thread Donal Devine
Measuring performance in any multitasking system is difficult, it is especially difficult in .NET because your thread can be paused for garbage collection at any time. Dan Appleman suggests using UserProcessorTime to measure performance, this timer keeps track of how much time the thread spend