473,396 Members | 2,109 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,396 software developers and data experts.

ASP.NET Response Delay - Slow

Over the past week, I've been noticing that any websites (on this one
particular web server) built with ASP.NET have unusually slow (5 second)
response times when moving through the site. There are times when the
delays dissappear, but they are existent 80% of the time.

This has only started up over the past week or so and I have checked CPU
usage, memory usage, etc. I've also reinstalled the 1.1 version of the .NET
framework just to be safe. Does anyone have any idea what might be casuing
this?

Just to give you an example, here are a few sites to look at:

ASP (works fine): http://www.UticaFire.com
ASP.NET (slow): http://www.ThePulse.com
ASP.NET (slow): http://www.CeilingDesigns.com
ASP.NET (absolutely no code behind - and still slow):
http://modus.thepulse.net

Thank you in advance for any light you can shed on this problem.

Vito DeCarlo
The Pulse Internet Services, Inc.
Nov 18 '05 #1
4 2148


Vito DeCarlo wrote:
Over the past week, I've been noticing that any websites (on this one
particular web server) built with ASP.NET have unusually slow (5 second)
response times when moving through the site. There are times when the
delays dissappear, but they are existent 80% of the time.

This has only started up over the past week or so and I have checked CPU
usage, memory usage, etc. I've also reinstalled the 1.1 version of the .NET
framework just to be safe. Does anyone have any idea what might be casuing
this?

Just to give you an example, here are a few sites to look at:

ASP (works fine): http://www.UticaFire.com
ASP.NET (slow): http://www.ThePulse.com
ASP.NET (slow): http://www.CeilingDesigns.com
ASP.NET (absolutely no code behind - and still slow):
http://modus.thepulse.net

Thank you in advance for any light you can shed on this problem.


First time an aspx page is loaded it needs to be compiled and cached on
the server which takes time. I think if you use Visual Studio you can
precompile aspx pages.

--

Martin Honnen
http://JavaScript.FAQTs.com/

Nov 18 '05 #2
Martin,

Thank you for responding, although I'm aware of the delay that occurs while
pages compile - this is a different issue.

It seems to have been working fine today - all I did was uninstall an
antivirus program (and restarted) the domain controller on the network. I
highly doubt that corrected the issue.

If anyone else has any ideas, I'm more than willing to hear them! We'll
see - maybe the problem went away.

Vito DeCarlo
"Martin Honnen" <Ma***********@t-online.de> wrote in message
news:Og**************@tk2msftngp13.phx.gbl...


Vito DeCarlo wrote:
Over the past week, I've been noticing that any websites (on this one
particular web server) built with ASP.NET have unusually slow (5 second)
response times when moving through the site. There are times when the
delays dissappear, but they are existent 80% of the time.

This has only started up over the past week or so and I have checked CPU
usage, memory usage, etc. I've also reinstalled the 1.1 version of the ..NET framework just to be safe. Does anyone have any idea what might be casuing this?

Just to give you an example, here are a few sites to look at:

ASP (works fine): http://www.UticaFire.com
ASP.NET (slow): http://www.ThePulse.com
ASP.NET (slow): http://www.CeilingDesigns.com
ASP.NET (absolutely no code behind - and still slow):
http://modus.thepulse.net

Thank you in advance for any light you can shed on this problem.


First time an aspx page is loaded it needs to be compiled and cached on
the server which takes time. I think if you use Visual Studio you can
precompile aspx pages.

--

Martin Honnen
http://JavaScript.FAQTs.com/

Nov 18 '05 #3
I've heard of occasions where the AV program will cause this problem. What
appears to be behind it is the AV program marking the file in some way that
makes ASP.NET believe that the file has changed. This causes the file to be
recompiled. And every recopy causes an access which causes the AV to mark
the file and on and on.

You might want to reinstall the AV program but exclude your ASP.NET web site
and the ASP.NET background fiel sight from the scanning just to see what
happens.

Jeff
"Vito DeCarlo" <FI**************@ThePulse.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Martin,

Thank you for responding, although I'm aware of the delay that occurs while pages compile - this is a different issue.

It seems to have been working fine today - all I did was uninstall an
antivirus program (and restarted) the domain controller on the network. I
highly doubt that corrected the issue.

If anyone else has any ideas, I'm more than willing to hear them! We'll
see - maybe the problem went away.

Vito DeCarlo
"Martin Honnen" <Ma***********@t-online.de> wrote in message
news:Og**************@tk2msftngp13.phx.gbl...


Vito DeCarlo wrote:
Over the past week, I've been noticing that any websites (on this one
particular web server) built with ASP.NET have unusually slow (5 second) response times when moving through the site. There are times when the
delays dissappear, but they are existent 80% of the time.

This has only started up over the past week or so and I have checked CPU usage, memory usage, etc. I've also reinstalled the 1.1 version of
the
.NET framework just to be safe. Does anyone have any idea what might be casuing this?

Just to give you an example, here are a few sites to look at:

ASP (works fine): http://www.UticaFire.com
ASP.NET (slow): http://www.ThePulse.com
ASP.NET (slow): http://www.CeilingDesigns.com
ASP.NET (absolutely no code behind - and still slow):
http://modus.thepulse.net

Thank you in advance for any light you can shed on this problem.


First time an aspx page is loaded it needs to be compiled and cached on
the server which takes time. I think if you use Visual Studio you can
precompile aspx pages.

--

Martin Honnen
http://JavaScript.FAQTs.com/


Nov 18 '05 #4
I'm sorry - I'm not quite understanding your solution. What is the "AV
program"?

-Vito
"Jeff" <js****@nospam.dls.net> wrote in message
news:e1**************@TK2MSFTNGP10.phx.gbl...
I've heard of occasions where the AV program will cause this problem. What appears to be behind it is the AV program marking the file in some way that makes ASP.NET believe that the file has changed. This causes the file to be recompiled. And every recopy causes an access which causes the AV to mark
the file and on and on.

You might want to reinstall the AV program but exclude your ASP.NET web site and the ASP.NET background fiel sight from the scanning just to see what
happens.

Jeff
"Vito DeCarlo" <FI**************@ThePulse.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Martin,

Thank you for responding, although I'm aware of the delay that occurs

while
pages compile - this is a different issue.

It seems to have been working fine today - all I did was uninstall an
antivirus program (and restarted) the domain controller on the network. I
highly doubt that corrected the issue.

If anyone else has any ideas, I'm more than willing to hear them! We'll
see - maybe the problem went away.

Vito DeCarlo
"Martin Honnen" <Ma***********@t-online.de> wrote in message
news:Og**************@tk2msftngp13.phx.gbl...


Vito DeCarlo wrote:

> Over the past week, I've been noticing that any websites (on this one > particular web server) built with ASP.NET have unusually slow (5

second) > response times when moving through the site. There are times when the > delays dissappear, but they are existent 80% of the time.
>
> This has only started up over the past week or so and I have checked CPU > usage, memory usage, etc. I've also reinstalled the 1.1 version of

the
.NET
> framework just to be safe. Does anyone have any idea what might be

casuing
> this?
>
> Just to give you an example, here are a few sites to look at:
>
> ASP (works fine): http://www.UticaFire.com
> ASP.NET (slow): http://www.ThePulse.com
> ASP.NET (slow): http://www.CeilingDesigns.com
> ASP.NET (absolutely no code behind - and still slow):
> http://modus.thepulse.net
>
> Thank you in advance for any light you can shed on this problem.

First time an aspx page is loaded it needs to be compiled and cached on the server which takes time. I think if you use Visual Studio you can
precompile aspx pages.

--

Martin Honnen
http://JavaScript.FAQTs.com/



Nov 18 '05 #5

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

Similar topics

5
by: No_Excuses | last post by:
All, I am interested in reading the text of a web page and parsing it. After searching on this newgroup I decided to use the following: ******************************* START OF CODE...
3
by: Ant | last post by:
Hi, I'm using the text changed event of as text box to display a datagrid of search results dynamically. (The classic 'gets more specific the more you type in' scenario ). I find when I first...
0
by: Max | last post by:
Can anyone point me towards reasons why Response.Redirect would work ok when running without debugging (via "Start without debugging" menu choice) but be really really slow when running in debug...
7
by: Chris Thompson | last post by:
Hi All, I have a private website created using HTML/PHP. Within this site, there is a page that has a form (question.php), which is populated depending on the question number that has been...
17
by: Amy | last post by:
Hi, I finished this script and for some reason there is a delay every so often in the timing. Sometimes it seems two take 2 seconds instead of 1. Can anyone see anything that would slow it down? I...
1
by: Flip Rayner | last post by:
I am writing an HTTPHandler that is basically a transparent proxy / URL Mapper. I have a line in my code to return a 503: context.context.Response.StatusCode = ...
3
by: Sirix42 | last post by:
Hi there, when I use Firefox to run my application (this involves sending an IFRAME request to the servlet and handling the response), there is no delay in displaying the data after each response....
7
by: jimatqsi | last post by:
I've got an app in Access 2003 running on XP. I added key preview and on keydown event to a form to capture and process and F11 key. Now there is a noticeable delay between pressing any key and 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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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
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,...

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.