Ask a Question related to ASP.NET General, Design and Development.
-
Jeremy #1
Performance hit on ASP.NET
I'm seeing a huge performance decrease in my ASP.NET
pages when executing on a production machine verses my
local machine. It isn't the bandwidth, and it isn't the
code itself. For some reason the compilation, or caching
or something is destroying the response times. While it
executes perfectly locally (XP & IIS 5) it executes
periodically at about 45 seconds or more per page on the
production machine (2000 Server & IIS 5). Any ideas?
Jeremy Guest
-
Performance log
Hi, FMS 2 server can monitor at least "active connection", "megabites", "memory" and "cpu" usage. However I have not been able to save these values... -
FMS X FCS (Performance)
Hi all. Anybody has made a performance study comparing these two technologies, FMS and FCS? I want to migrate from FCS to FMS, but I?ve to... -
Performance
Oracle 8.1.7 NT2000: Running 2 databases on the same machine, 'same' init parameters. - in database 1 I imported the full user-scheme (say 30... -
web performance
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnservice/html/service07222003.asp For the article above, does anyone know it's... -
Performance...
Everything Lynn says. And also check through your scripts and be sure you don't see any IP addresses within the scripts. And if you do see IP... -
Todd Thompson #2
Re: Performance hit on ASP.NET
I would suggest editing the web.config file <trace> tag and enable it and
enable the pageOutput attribute. You can then create a trace context and
output to it.
protected System.Web.TraceContext con = null;
protected void PageLoad()
{
con = this.Page.Trace;
con.Write("PageLoad", "_Begin something");
// doing something
con.Write("PageLoad","_End something");
}
It provided me some very valuable timing information that helped me isolate
the source of a slowness I was experiencing, namely using the
identity.IsInRole(group) function.
HTH,
Todd Thompson
Todd Thompson Guest
-
Jeremy #3
Re: Performance hit on ASP.NET
I have timers set on each section of the code, including
the constructor, the pageLoad and the executions... they
all execute in effectively zero time, somewhere IIS is
simply locking up for up to a minute at a time, probably
prior to ever executing the page.
Jeremy Guest



Reply With Quote

