473,406 Members | 2,378 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.

Slow web page

Hello,

I have a web page that use to take about 6 seconds to load. Now it is
taking 24 seconds
The maximum number of records sending back is 200.
The SQL SP is executing in 3-4 seconds and never more than 6 seconds.

This happened overnight, no code has been changed, no sql sps has been
changed, no web pages has been changed
This also happens even if I have only 1 user on the web site.

What should I be looking for??
Any help is appreciated. This is not a public web site and I can not share
the URL. Sorry.
If I am to use PerfMon and I did what should I be looking at specifically...
Thank you for any help, Ideas, Links, etc..

SA
Mar 30 '06 #1
11 1519
MSDN,
Until you post sufficient sample working code to be able to replicate the
issue, I doubt you'll be able to get much more than some "shoot in the dark"
ideas from readers on this. Stuff about connections, why does the Stored
proc take so long, and so on.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"MSDN" wrote:
Hello,

I have a web page that use to take about 6 seconds to load. Now it is
taking 24 seconds
The maximum number of records sending back is 200.
The SQL SP is executing in 3-4 seconds and never more than 6 seconds.

This happened overnight, no code has been changed, no sql sps has been
changed, no web pages has been changed
This also happens even if I have only 1 user on the web site.

What should I be looking for??
Any help is appreciated. This is not a public web site and I can not share
the URL. Sorry.
If I am to use PerfMon and I did what should I be looking at specifically...
Thank you for any help, Ideas, Links, etc..

SA

Mar 30 '06 #2
have you done anything on your own to trouble-shoot the problem? If so post
it here.

--
Warm Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley 2006
Blog: http://msmvps.com/blogs/Alvin/
-------------------------------------------------------

"MSDN" <sq**********@hotmail.com> wrote in message
news:eA**************@TK2MSFTNGP09.phx.gbl...
Hello,

I have a web page that use to take about 6 seconds to load. Now it is
taking 24 seconds
The maximum number of records sending back is 200.
The SQL SP is executing in 3-4 seconds and never more than 6 seconds.

This happened overnight, no code has been changed, no sql sps has been
changed, no web pages has been changed
This also happens even if I have only 1 user on the web site.

What should I be looking for??
Any help is appreciated. This is not a public web site and I can not share the URL. Sorry.
If I am to use PerfMon and I did what should I be looking at specifically...

Thank you for any help, Ideas, Links, etc..

SA

Mar 30 '06 #3
Copy the page to a new one, and remove everything except the SQL logic,
and go from there. Add code back in until you find the problem. Basic
troubleshooting technique.

Mar 30 '06 #4
Peter,

It has nothing to do with the code, the code was never touched
The SP takes 3-4 seconds becasue it is a nasty 32 join, union etc..
so we can live with 3-4 seconds to get 200 records.
The issue here why it is taking now 24 seconds to get the web page to load
the SP still executing in 3-4 seconds.
There must be a list of things a person can go through.

Thank you for your input.

SA

"Peter Bromberg [C# MVP]" <pb*******@yahoo.nospammin.com> wrote in message
news:9E**********************************@microsof t.com...
MSDN,
Until you post sufficient sample working code to be able to replicate the
issue, I doubt you'll be able to get much more than some "shoot in the
dark"
ideas from readers on this. Stuff about connections, why does the Stored
proc take so long, and so on.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"MSDN" wrote:
Hello,

I have a web page that use to take about 6 seconds to load. Now it is
taking 24 seconds
The maximum number of records sending back is 200.
The SQL SP is executing in 3-4 seconds and never more than 6 seconds.

This happened overnight, no code has been changed, no sql sps has been
changed, no web pages has been changed
This also happens even if I have only 1 user on the web site.

What should I be looking for??
Any help is appreciated. This is not a public web site and I can not
share
the URL. Sorry.
If I am to use PerfMon and I did what should I be looking at
specifically...
Thank you for any help, Ideas, Links, etc..

SA

Mar 30 '06 #5
Alvin,

Yes what I did is the following.

I checked if my SP still takes 3-4 seconds to execute and the answer is YES
and YES
The Maximum number of records returned is 200 and this has very little data.
The Maximum web page size is 183,947 bytes which is nothing
I traced the code and I don't see any errors or try catch issues.
When I run the same web site locally on my slow laptop it takes only 6
seconds for the page to load.
This web site is accessed locally in an Intranet environment.

I don't really know what else to look for at this time.
But still thinking....

Thank you for any hints, shoot in the dark stuff etc..

SA
"Alvin Bruney - ASP.NET MVP" <www.lulu.com/owc> wrote in message
news:eo**************@TK2MSFTNGP10.phx.gbl...
have you done anything on your own to trouble-shoot the problem? If so
post
it here.

--
Warm Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley 2006
Blog: http://msmvps.com/blogs/Alvin/
-------------------------------------------------------

"MSDN" <sq**********@hotmail.com> wrote in message
news:eA**************@TK2MSFTNGP09.phx.gbl...
Hello,

I have a web page that use to take about 6 seconds to load. Now it is
taking 24 seconds
The maximum number of records sending back is 200.
The SQL SP is executing in 3-4 seconds and never more than 6 seconds.

This happened overnight, no code has been changed, no sql sps has been
changed, no web pages has been changed
This also happens even if I have only 1 user on the web site.

What should I be looking for??
Any help is appreciated. This is not a public web site and I can not

share
the URL. Sorry.
If I am to use PerfMon and I did what should I be looking at

specifically...


Thank you for any help, Ideas, Links, etc..

SA


Mar 30 '06 #6
Did you "try" my suggestion?

Mar 30 '06 #7
Also, when the page finally loads, choose View Source, and save it as
normal HTML as a new page on your server. Then try accessing THAT page.

Mar 30 '06 #8
sirfunusa,
I tried what you said and if I am not getting any data to return then it
works fine
It seems if I return any 200 records if is very slow
I will bounce the servers and see if that helps tonight

It was a very good suggetion

Thank you,

SA
"sirfunusa" <si*******@hotmail.com> wrote in message
news:11**********************@e56g2000cwe.googlegr oups.com...
Did you "try" my suggestion?

Mar 31 '06 #9
I did this already and It seems that the web server is suffering.
I checked how many users on the server and only about 10 users at a time
There is no Denial of service attacks present at least according to the
Administrators

Will bounce it tonight and that might do it.

Lots of RAM available, HD space etc...

After bouncing the server in the past things improved but not for this web
server

Thank you sooo much for your help

SA

"sirfunusa" <si*******@hotmail.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
Also, when the page finally loads, choose View Source, and save it as
normal HTML as a new page on your server. Then try accessing THAT page.

Mar 31 '06 #10
Always test with simple pages to compare

Mar 31 '06 #11
SirFunUSA

Rebooting the Web Server Resolved my problem.
Thanks for all you help.

SA

"sirfunusa" <si*******@hotmail.com> wrote in message
news:11*********************@u72g2000cwu.googlegro ups.com...
Always test with simple pages to compare

Apr 1 '06 #12

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

Similar topics

12
by: Albert Grennock | last post by:
Hi, Hope this is the right forum to ask in. Anyway in IE I go to this site and I click on computing on the left hand menu and it takes from about 6 to 15 seconds to open the submenu. I then...
3
by: Jennyfer J Barco | last post by:
In my application I have a datagrid. The code calls a Stored procedure and brings like 200 records. I created a dataset and then a dataview to bind the results of the query to my grid using ...
1
by: Jeffrey Roughgarden | last post by:
I wonder if anyone has any tips to improve Visual Studio's debugging performance? I have a 20 page web app that takes 90 or more seconds to bring up the logon page after I hit F5. Start without...
5
by: Tom | last post by:
Any ideas what can cause ASP.NET pages to be slow now and then? It can take more than 5 seconds to get the page, which is way to much. One of the pages (not sure how many there are, i have just...
8
by: aualias | last post by:
I am rewriting a web page that was previously done with ColdFusion. It has a DataGrid and one column in the DataGrid is a dropdown list which is the same for all rows. The ItemDataBound code...
0
by: Brian Russell | last post by:
We have three servers (beyond my development box) in our organization. The first is a testing server that has IIS and SQL Server on it. The second is another testing server that also has IIS and...
3
by: michael | last post by:
Hi, I am trying to write an ASP.NET web app, in Visual Basic.NET, using Visual Studio.NET 2004, .NET framework 1.1.4322 SP1 Running the project/app on localhost while in dev/write/debug stage ...
3
by: UJ | last post by:
I had somebody (who was an idiot) tell me that tables are slow in rendering? That you shouldn't do things like tables inside of tables. Is that true? I think she didn't know what she was...
3
by: JosephByrns | last post by:
I have an asp.net application, on first load the page is slow to load. The next time I go to the page it is fast, then fast again then back to slow. The number of times it is slow seems to be time...
5
by: =?Utf-8?B?V2FubmFiZQ==?= | last post by:
We have a page that is loading very slow. There is not a lot of data, not a lot of users are connected at the same time and the page does not produce an error, so I am not sure where to start to...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...

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.